Type alias BasicAuthConfig

BasicAuthConfig: {
    clientId: string;
    clientSecret: string;
    length: BasicAuthLength;
}

Configuration options for basic authentication.

Type declaration

  • clientId: string

    The client ID to use for authentication.

  • clientSecret: string

    The client secret to use for authentication.

  • length: BasicAuthLength

    The length of the authentication token to generate (112 or 156)

Generated using TypeDoc