Documentation
    Preparing search index...
    interface Args {
        abortSignal?: AbortSignal;
        body?: unknown;
        contentType?: string;
        duplex?: "half";
        headers?: Record<string, string | undefined>;
        maxRetries?: number;
        method: string;
        queryParameters?: Record<
            string,
            string
            | object
            | string[]
            | object[]
            | null,
        >;
        requestType?: "json" | "file" | "bytes";
        responseType?:
            | "json"
            | "blob"
            | "sse"
            | "streaming"
            | "text"
            | "arrayBuffer";
        timeoutMs?: number;
        url: string;
        withCredentials?: boolean;
    }
    Index

    Properties

    abortSignal?: AbortSignal
    body?: unknown
    contentType?: string
    duplex?: "half"
    headers?: Record<string, string | undefined>
    maxRetries?: number
    method: string
    queryParameters?: Record<string, string | object | string[] | object[] | null>
    requestType?: "json" | "file" | "bytes"
    responseType?: "json" | "blob" | "sse" | "streaming" | "text" | "arrayBuffer"
    timeoutMs?: number
    url: string
    withCredentials?: boolean