Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HttpResponse

interface HttpResponse {
data: ArrayBuffer;
headers: Record<string, string>;
status: number;
statusText: string;
}

§Properties

§
data: ArrayBuffer
[src]
§
headers: Record<string, string>
[src]
§
status: number
[src]
§
statusText: string
[src]