@resistdesign/voltra
    Preparing search index...

    Type Alias ServiceConfig

    The HTTP service configuration, including authorization, to be used for a service call.

    type ServiceConfig = {
        authorization?: string;
        basePath?: string;
        domain: string;
        port?: number;
        protocol: string;
    }
    Index

    Properties

    authorization?: string

    Bearer token for authorization.

    basePath?: string

    Base path to prefix all request paths.

    domain: string

    Service domain or host.

    port?: number

    Optional port override.

    protocol: string

    URL protocol (http or https).