interface ClientConfig {
    apiKey?: string;
    apiUrl?: string;
    callerOptions?: AsyncCallerParams;
    defaultHeaders?: Record<string, HeaderValue>;
    onRequest?: RequestHook;
    timeoutMs?: number;
}

Properties

apiKey?: string
apiUrl?: string
callerOptions?: AsyncCallerParams
defaultHeaders?: Record<string, HeaderValue>
onRequest?: RequestHook
timeoutMs?: number