UNPKG

swagger-pack

Version:

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

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