interface RequestOptionsCustom {
    data?: RequestDataPayload;
    headers?: Headers;
    httpAgent?: any;
    httpsAgent?: any;
    maxRedirects?: number;
    method: string;
    onDownloadProgress?: ProgressEventCallback;
    onUploadProgress?: ProgressEventCallback;
    signal?: AbortSignal;
    transformResponse?: ((value: any) => any)[];
    url?: string;
    withCredentials?: boolean;
}

Hierarchy (view full)

Properties

headers?: Headers
httpAgent?: any
httpsAgent?: any
maxRedirects?: number
method: string
onDownloadProgress?: ProgressEventCallback
onUploadProgress?: ProgressEventCallback
signal?: AbortSignal
transformResponse?: ((value: any) => any)[]
url?: string
withCredentials?: boolean