Interface BatchFetchRequest

interface BatchFetchRequest {
    body?: string | Uint8Array;
    headers?: Record<string, string>;
    method?: string;
    timeoutMs?: number;
    url: string;
}

Properties

body?: string | Uint8Array
headers?: Record<string, string>
method?: string
timeoutMs?: number
url: string