FuncType - v0.60.3
    Preparing search index...

    Interface HttpClientConfig

    interface HttpClientConfig {
        baseUrl?: string;
        defaultHeaders?: Record<string, string>;
        fetch?: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
    }
    Index

    Properties

    baseUrl?: string
    defaultHeaders?: Record<string, string>
    fetch?: (input: string | URL | Request, init?: RequestInit) => Promise<Response>