Projekt

Obecné

Profil

Stáhnout (272 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
/* tslint:disable */
2
/* eslint-disable */
3
import { HttpResponse } from '@angular/common/http';
4

    
5
/**
6
 * Constrains the http response to not have the body defined as `T | null`, but `T` only.
7
 */
8
export type StrictHttpResponse<T> = HttpResponse<T> & {
9
  readonly body: T;
10
}
(7-7/7)