11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import { HttpResponse } from '@angular/common/http';
|
|
|
|
/**
|
|
* Constrains the http response to not have the body defined as `T | null`, but `T` only.
|
|
*/
|
|
export type StrictHttpResponse<T> = HttpResponse<T> & {
|
|
readonly body: T;
|
|
}
|