kkrpc
    Preparing search index...

    Interface HttpClientTransportOptions

    Options for the client-side unary HTTP transport.

    interface HttpClientTransportOptions {
        fetch?: typeof fetch;
        headers?: Record<string, string>;
        url: string;
    }
    Index

    Properties

    Properties

    fetch?: typeof fetch

    Fetch implementation to use; defaults to global fetch.

    headers?: Record<string, string>

    Headers merged with the default JSON content type.

    url: string

    Absolute or relative endpoint URL that accepts RPC POST requests.