zendesk-messaging-client
    Preparing search index...

    Interface ClientConfig

    interface ClientConfig {
        auth: string;
        fetch?: (request: Request) => Promise<Response>;
        subdomain?: string;
    }

    Hierarchy

    • Pick<Config, "fetch">
      • ClientConfig
    Index

    Properties

    auth: string
    fetch?: (request: Request) => Promise<Response>

    Fetch API implementation. You can use this option to provide a custom fetch instance.

    globalThis.fetch
    
    subdomain?: string