EmulatorConfig interface

Konfiguration des Firebase-Authentifizierungsemulators.

Unterschrift:

export interface EmulatorConfig 

Eigenschaften

Eigentum Typ Beschreibung
Gastgeber Zeichenfolge Der Hostname des Emulators, bei dem es sich um eine Domäne („localhost“), eine IPv4-Adresse („127.0.0.1“) oder eine IPv6-Adresse in Anführungszeichen („[::1]“) handeln kann.
Optionen { readonlydisableWarnings: boolean; } Die emulatorspezifischen Optionen.
Hafen Nummer | Null Der Port des Emulators oder null, wenn der Port nicht angegeben ist (d. h. Protokollstandard).
Protokoll Zeichenfolge Das zur Kommunikation mit dem Emulator verwendete Protokoll („http“/„https“).

EmulatorConfig.host

Der Hostname des Emulators, bei dem es sich um eine Domäne („localhost“), eine IPv4-Adresse („127.0.0.1“) oder eine IPv6-Adresse in Anführungszeichen („[::1]“) handeln kann.

Unterschrift:

readonly host: string;

EmulatorConfig.options

Die emulatorspezifischen Optionen.

Unterschrift:

readonly options: {
        readonly disableWarnings: boolean;
    };

EmulatorConfig.port

Der Port des Emulators oder null, wenn der Port nicht angegeben ist (d. h. Protokollstandard).

Unterschrift:

readonly port: number | null;

EmulatorConfig.protocol

Das zur Kommunikation mit dem Emulator verwendete Protokoll („http“/„https“).

Unterschrift:

readonly protocol: string;