aswi2021codebakers-gitlab/src/app/shared/api/endpoints/strict-http-response.ts @ 21b94ebf
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 |
}
|
- « Předchozí
- 1
- …
- 5
- 6
- 7
- Další »