Interface RawRequestOptionsInternal

interface RawRequestOptions {
    body?: any;
    headers?: { [key: string]: string };
    json?: boolean;
    maxRedirects?: number;
    method?: string;
    proxy?: string;
    query?: { [key: string]: string | string[] };
    signal?: AbortSignal;
    tag?: string;
    timeout?: number;
    token?: string;
    uri?: string;
    url?: string;
    useGlobalApi?: boolean;
    withCredentials?: boolean;
}

Properties

body?: any
headers?: { [key: string]: string }
json?: boolean
maxRedirects?: number
method?: string
proxy?: string
query?: { [key: string]: string | string[] }
signal?: AbortSignal
tag?: string
timeout?: number
token?: string
uri?: string
url?: string
useGlobalApi?: boolean
withCredentials?: boolean