Interface ResInit

interface ResInit {
    [ABORT_CONTROLLER]?: AbortController;
    [ON_GLOBAL_DOWNLOAD_PROGRESS]?: ProgressCallback;
    body?: null | BodyInit | Record<string, any>;
    headers?: HeadersInit;
    meta?: Record<string, any>;
    onDownloadProgress?: ProgressCallback;
    responseType?: ResponseType;
    status?: number;
    statusText?: string;
    throwHttpError?: boolean;
    timeout?: number;
}

Hierarchy

  • ResponseInit
    • ResInit

Properties

[ABORT_CONTROLLER]?: AbortController
[ON_GLOBAL_DOWNLOAD_PROGRESS]?: ProgressCallback
body?: null | BodyInit | Record<string, any>
headers?: HeadersInit
meta?: Record<string, any>
onDownloadProgress?: ProgressCallback
responseType?: ResponseType
status?: number
statusText?: string
throwHttpError?: boolean
timeout?: number

Generated using TypeDoc