Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Configuration of Firebase Authentication Emulator.
Signature:
export interface EmulatorConfig
Property | Type | Description |
---|---|---|
host | string | The hostname of the emulator, which may be a domain ("localhost"), IPv4 address ("127.0.0.1") or quoted IPv6 address ("[::1]"). |
options | { readonly disableWarnings: boolean; } | The emulator-specific options. |
port | number | null | The port of the emulator, or null if port isn't specified (i.e. protocol default). |
protocol | string | The protocol used to communicate with the emulator ("http"/"https"). |
The hostname of the emulator, which may be a domain ("localhost"), IPv4 address ("127.0.0.1") or quoted IPv6 address ("[::1]").
Signature:
readonly host: string;
The emulator-specific options.
Signature:
readonly options: {
readonly disableWarnings: boolean;
};
The port of the emulator, or null if port isn't specified (i.e. protocol default).
Signature:
readonly port: number | null;
The protocol used to communicate with the emulator ("http"/"https").
Signature:
readonly protocol: string;