Callable
-
Gets the
RemoteConfig
instance.The Remote Config SDK does not work in a Node.js environment.
Parameters
-
Optional app: App
The app to create a Remote Config service for. If not passed, uses the default app.
Returns RemoteConfig
-
Index
Interfaces
Type aliases
Functions
Type aliases
FetchStatus
Summarizes the outcome of the last attempt to fetch config from the Firebase Remote Config server.
- "no-fetch-yet" indicates the RemoteConfig instance has not yet attempted to fetch config, or that SDK initialization is incomplete.
- "success" indicates the last attempt succeeded.
- "failure" indicates the last attempt failed.
- "throttle" indicates the last attempt was rate-limited.
LogLevel
Defines levels of Remote Config logging.
ValueSource
Indicates the source of a value.
- "static" indicates the value was defined by a static constant.
- "default" indicates the value was defined by default config.
- "remote" indicates the value was defined by fetched config.
Functions
isSupported
-
This method provides two different checks:
- Check if IndexedDB exists in the browser environment.
- Check if the current browser context allows IndexedDB
open()
calls.
It returns a
Promise
which resolves to true if a RemoteConfig instance can be initialized in this environment, or false if it cannot.Returns Promise<boolean>
The Remote Config SDK does not work in a Node.js environment.