HybridForms API
    Preparing search index...

    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) => void;
        onUploadProgress?: (ev: ProgressEvent) => 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
    Index

    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) => void
    onUploadProgress?: (ev: ProgressEvent) => void
    password?: string
    responseType?: string
    signal?: AbortSignal
    silentFail?: boolean
    stage?: string
    timeout?: number
    type?: string
    url: string
    user?: string
    withCredentials?: boolean