@wharfkit/session - v4.0.1
    Preparing search index...

    Interface APIClientOptions

    interface APIClientOptions {
        fetch?: Fetch;
        headers?: Record<string, string>;
        provider?: APIProvider;
        url?: string;
    }

    Hierarchy (View Summary)

    Index
    fetch?: Fetch

    Fetch instance, must be provided in non-browser environments. Node.js 18+ includes a built-in fetch implementation.

    headers?: Record<string, string>

    Headers that will be applied to every request

    provider?: APIProvider

    API provider to use, if omitted and the url option is set the default provider will be used.

    url?: string

    URL to the API node to use, only used if the provider option is not set.