EmulatorConfig interface

Firebase Authentication エミュレータの構成。

署名:

export interface EmulatorConfig 

プロパティ

プロパティ 説明
ホスト 文字列 エミュレータのホスト名。ドメイン(「localhost」)、IPv4 アドレス(「127.0.0.1」)、引用符で囲まれた IPv6 アドレス(「[::1]」)。
options { readonly disableWarnings: boolean;} エミュレータ固有のオプション。
ポート 数値 |null エミュレータのポート、またはポートが指定されていない場合(つまり、プロトコルのデフォルト)は null。
protocol 文字列 エミュレータとの通信に使用されるプロトコル(「http」または「https」)。

EmulatorConfig.host

エミュレータのホスト名。ドメイン(「localhost」)、IPv4 アドレス(「127.0.0.1」)、引用符で囲まれた IPv6 アドレス(「[::1]」)。

署名:

readonly host: string;

EmulatorConfig.options

エミュレータ固有のオプション。

署名:

readonly options: {
        readonly disableWarnings: boolean;
    };

EmulatorConfig.port

エミュレータのポート、またはポートが指定されていない場合(つまり、プロトコルのデフォルト)は null。

署名:

readonly port: number | null;

EmulatorConfig.protocol

エミュレータとの通信に使用されるプロトコル(「http」または「https」)。

署名:

readonly protocol: string;