Config interface

Interface representing the Auth config.

Signature:

export interface Config 

Properties

Property Type Description
apiHost string The host at which the Firebase Auth backend is running.
apiKey string The API Key used to communicate with the Firebase Auth backend.
apiScheme string The scheme used to communicate with the Firebase Auth backend.
authDomain string The domain at which the web widgets are hosted (provided via Firebase Config).
sdkClientVersion string The SDK Client Version.
tokenApiHost string The host at which the Secure Token API is running.

Config.apiHost

The host at which the Firebase Auth backend is running.

Signature:

apiHost: string;

Config.apiKey

The API Key used to communicate with the Firebase Auth backend.

Signature:

apiKey: string;

Config.apiScheme

The scheme used to communicate with the Firebase Auth backend.

Signature:

apiScheme: string;

Config.authDomain

The domain at which the web widgets are hosted (provided via Firebase Config).

Signature:

authDomain?: string;

Config.sdkClientVersion

The SDK Client Version.

Signature:

sdkClientVersion: string;

Config.tokenApiHost

The host at which the Secure Token API is running.

Signature:

tokenApiHost: string;