Interface BaseHTTPClientResponse

interface BaseHTTPClientResponse {
    body: Uint8Array;
    headers: Record<string, string>;
    status: number;
}

Properties

Properties

body: Uint8Array
headers: Record<string, string>
status: number

Generated using TypeDoc