Type alias ServiceConstructorOptions<Namespaces>

ServiceConstructorOptions<Namespaces>: {
    defaultMethod?: SupportedRequestMethods;
    namespaces?: string | Namespaces & {
        default: string;
    };
}

Type Parameters

  • Namespaces extends Object = Record<string, string>

Type declaration

  • Optional defaultMethod?: SupportedRequestMethods

    默认请求方法

  • Optional namespaces?: string | Namespaces & {
        default: string;
    }

    Namespaces 命名空间

    Example

    {
    "default": "/api/v1",
    "v2": "/api/v2",
    "open": "/open"
    }

Generated using TypeDoc