UNPKG

swagger-pack

Version:

test of swagger generated angular models/services and possibility to reuse them

10 lines (8 loc) 230 B
/* tslint:disable */ import { HttpResponse } from '@angular/common/http'; /** * Constrains the http to not expand the response type with `| null` */ export type StrictHttpResponse<T> = HttpResponse<T> & { readonly body: T; }