Interface ClientConfigInit<Params>

Base options that can be passed to the ClientConfig class.

Type Parameters

Hierarchy

  • ClientConfigInit

Implemented by

Properties

baseUri?: string
fetchOptions?: any
headers?: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
parameters: Params
proxy?: string
throwOnBadResponse?: boolean
transformRequest?: ((data, headers) => any)

Type declaration

    • (data, headers): any
    • Parameters

      • data: unknown
      • headers: {
            [key: string]: string;
        }
        • [key: string]: string

      Returns any