Interface XhrRequest<FetchRes>

interface XhrRequest<FetchRes = false> {
    abort?: () => void;
    checkDateTime?: { useHeader: string };
    customRequestInitializer?: (
        xhr: XMLHttpRequest | XhrRequest<false>,
    ) => void;
    data?: any;
    dataFileUrlRef?: string;
    fetchResponse?: FetchRes;
    headers?: IDictionary<string>;
    isRetry?: boolean;
    o?: XMLHttpRequest;
    onDownloadProgress?: (ev: ProgressEvent<EventTarget>) => void;
    onUploadProgress?: (ev: ProgressEvent<EventTarget>) => void;
    password?: string;
    responseType?: string;
    signal?: AbortSignal;
    silentFail?: boolean;
    stage?: string;
    timeout?: number;
    type?: string;
    url: string;
    user?: string;
    withCredentials?: boolean;
}

Type Parameters

  • FetchRes = false

Properties

abort?: () => void
checkDateTime?: { useHeader: string }
customRequestInitializer?: (xhr: XMLHttpRequest | XhrRequest<false>) => void
data?: any
dataFileUrlRef?: string
fetchResponse?: FetchRes
headers?: IDictionary<string>
isRetry?: boolean
o?: XMLHttpRequest
onDownloadProgress?: (ev: ProgressEvent<EventTarget>) => void
onUploadProgress?: (ev: ProgressEvent<EventTarget>) => void
password?: string
responseType?: string
signal?: AbortSignal
silentFail?: boolean
stage?: string
timeout?: number
type?: string
url: string
user?: string
withCredentials?: boolean