EmulatorConfig interface

Firebase Authentication 模拟器的配置。

签名

export interface EmulatorConfig 

属性

属性 类型 说明
主机 字符串 模拟器的主机名,可以是网域(“localhost”)、IPv4 地址(“127.0.0.1”)或带英文引号的 IPv6 地址(“[::1]”)。
options { readonlydisableWarnings: 布尔值;} 特定于模拟器的选项。
端口 数字 |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;