HttpResponse
Это содержимое пока не доступно на вашем языке.
HttpResponse =
object
Defined in: src/http/types.ts:29
Properties
Section titled “Properties”
readonlyoptionalbody?:string|Uint8Array|ReadableStream<Uint8Array> |object|null
Defined in: src/http/types.ts:38
Body. A string or plain object is marshalled (JSON) with a
Content-Type; a Uint8Array or web ReadableStream is sent as raw
bytes (default application/octet-stream). Streams are one-shot, so
the caching middleware must not wrap a streaming response.
contentType?
Section titled “contentType?”
readonlyoptionalcontentType?:string
Defined in: src/http/types.ts:40
Forced content-type. Overrides whatever the marshaller picks.
headers?
Section titled “headers?”
readonlyoptionalheaders?:Readonly<Record<string,string>>
Defined in: src/http/types.ts:31
status
Section titled “status”
readonlystatus:number
Defined in: src/http/types.ts:30
