Interface RequestOptions

interface RequestOptions {
    body?: any;
    headers?: Record<string, string>;
    method?: string;
    query?: any;
    signal?: AbortSignal;
    tag?: string;
    timeout?: number;
    token?: string;
}

Hierarchy (View Summary)

Properties

body?: any
headers?: Record<string, string>
method?: string
query?: any
signal?: AbortSignal
tag?: string
timeout?: number
token?: string