(body?: NoInfer<BodyType> | null, init?: HttpResponseInit)
| 47 | readonly [bodyType]: BodyType = null as any |
| 48 | |
| 49 | constructor(body?: NoInfer<BodyType> | null, init?: HttpResponseInit) { |
| 50 | const responseInit = normalizeResponseInit(init) |
| 51 | super(body as BodyInit, responseInit) |
| 52 | decorateResponse(this, responseInit) |
| 53 | } |
| 54 | |
| 55 | static error(): HttpResponse<any> { |
| 56 | return super.error() as HttpResponse<any> |
nothing calls this directly
no test coverage detected