Interface HonuaRawRequest

Parameters for making a raw HTTP request through the client.

interface HonuaRawRequest {
    body?: null | BodyInit;
    headers?: HeadersInit;
    method?: QueryMethod;
    path: string;
    query?: Record<string, string | number | boolean>;
    responseFormat?: "json" | "pjson";
    signal?: AbortSignal;
}

Properties

body?: null | BodyInit
headers?: HeadersInit
method?: QueryMethod
path: string
query?: Record<string, string | number | boolean>
responseFormat?: "json" | "pjson"
signal?: AbortSignal