Reference
Classes
BoundReflagClient
A client bound with a specific user, company, and other context.
Constructors
new BoundReflagClient()
new BoundReflagClient(client: ReflagClient, options: ContextWithTracking): BoundReflagClientInternal
(Internal) Creates a new BoundReflagClient. Use bindClient to create a new client bound with a specific context.
Parameters
Returns
Accessors
company
Get Signature
Gets the company associated with the client.
Returns
| undefined | { [k: string]: any; avatar: string; id: undefined | string | number; name: string; }
The company or undefined if it is not set.
otherContext
Get Signature
Gets the "other" context associated with the client.
Returns
| undefined | Record<string, any>
The "other" context or undefined if it is not set.
user
Get Signature
Gets the user associated with the client.
Returns
| undefined | { [k: string]: any; avatar: string; email: string; id: undefined | string | number; name: string; }
The user or undefined if it is not set.
Methods
bindClient()
Create a new client bound with the additional context. Note: This performs a shallow merge for user/company/other individually.
Parameters
Returns
new client bound with the additional context
flush()
Flushes the batch buffer.
Returns
Promise<void>
getFlag()
Get a specific flag for the user/company/other context bound to this client. Using the isEnabled property sends a check event to Reflag.
Type Parameters
TKey extends string
Parameters
key
TKey
The key of the flag to get.
Returns
Flags for the given user/company and whether each one is enabled or not
getFlagRemote()
Get remotely evaluated flag for the user/company/other context bound to this client.
Parameters
key
string
The key of the flag to get.
Returns
Flag for the given user/company and key and whether it's enabled or not
getFlags()
Get flags for the user/company/other context bound to this client. Meant for use in serialization of flags for transferring to the client-side/browser.
Returns
Flags for the given user/company and whether each one is enabled or not
getFlagsForBootstrap()
Get raw flags for the user/company/other context bound to this client without wrapping them in getters. This method returns raw flag data suitable for bootstrapping client-side applications.
Returns
Raw flags for the given user/company and whether each one is enabled or not
getFlagsRemote()
Get remotely evaluated flag for the user/company/other context bound to this client.
Returns
Flags for the given user/company and whether each one is enabled or not
refreshFlags()
Refreshes the flag definitions from the server.
Fetch starts are throttled to at most once per second. Outside in-request mode, a call to refreshFlags(waitForVersion) still waits until the cache has applied that version or newer.
In in-request mode, a throttled call only records pending refresh work. The fetch then runs on the next request/access or refreshFlags() call after the throttle window expires.
Parameters
waitForVersion?
number
Optional flag state version to wait for before returning updated definitions.
Returns
Promise<void>
track()
Track an event in Reflag.
Parameters
event
string
The event to track.
Returns
Promise<void>
Throws
An error if the event is invalid or the options are invalid.
EdgeClient
The EdgeClient is ReflagClient pre-configured to be used in edge runtimes, like Cloudflare Workers.
It always uses flagsSyncMode: "in-request". Refresh fetch starts are throttled to at most once per second. A refreshFlags() call made during that throttle window only records pending refresh work, so the call may resolve before the fetch runs. That pending refresh is executed on the next request/access or refreshFlags() call after the window expires.
Example
Extends
Constructors
new EdgeClient()
Parameters
options
Returns
Overrides
Properties
Accessors
flagOverrides
Set Signature
Deprecated
Use setFlagOverrides() for replacing the base override set.
Parameters
overrides
| Partial<Record<string, FlagOverride>> | FlagOverridesFn
Returns
void
Inherited from
Methods
bindClient()
Returns a new BoundReflagClient with the user/company/otherContext set to be used in subsequent calls. For example, for evaluating flag targeting or tracking events.
Parameters
Returns
A new client bound with the arguments given.
Throws
An error if the user/company is given but their ID is not a string.
Remarks
The updateUser / updateCompany methods will automatically be called when the user/company is set respectively.
Inherited from
clearFlagOverrides()
Clears the base flag overrides.
Returns
void
Remarks
This does not affect temporary layers added with pushFlagOverrides().
Example
Inherited from
ReflagClient.clearFlagOverrides
destroy()
Destroys the client and cleans up all resources including timers and background processes.
Returns
void
Remarks
After calling this method, the client should not be used anymore. This is particularly useful in development environments with hot reloading to prevent multiple background processes from running simultaneously.
Inherited from
flush()
Flushes and completes any in-flight fetches in the flag cache.
Returns
Promise<void>
Remarks
It is recommended to call this method when the application is shutting down to ensure all events are sent before the process exits.
This method is automatically called when the process exits if batchOptions.flushOnExit is true in the options (default).
Inherited from
getFlag()
Gets the evaluated flag for the current context which includes the user, company, and custom context. Using the isEnabled property sends a check event to Reflag.
Type Parameters
TKey extends string
Parameters
key
TKey
The key of the flag to get.
Returns
The evaluated flag.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise.
Inherited from
getFlagDefinitions()
Gets the flag definitions, including all config values. To evaluate which flags are enabled for a given user/company, use getFlags.
Returns
The flags definitions.
Inherited from
ReflagClient.getFlagDefinitions
getFlagRemote()
Gets evaluated flag with the usage of remote context. This method triggers a network request every time it's called.
Type Parameters
TKey extends string
Parameters
Returns
evaluated flag
Inherited from
getFlags()
Gets the evaluated flags for the current context which includes the user, company, and custom context.
Parameters
Returns
The evaluated flags.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise.
Inherited from
getFlagsForBootstrap()
Gets the evaluated flags for the current context without wrapping them in getters. This method returns raw flag data suitable for bootstrapping client-side applications.
Parameters
Returns
The evaluated raw flags and the context.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise. This method returns RawFlag objects without wrapping them in getters, making them suitable for serialization.
Inherited from
ReflagClient.getFlagsForBootstrap
getFlagsRemote()
Gets evaluated flags with the usage of remote context. This method triggers a network request every time it's called.
Parameters
Returns
evaluated flags
Inherited from
initialize()
Initializes the client by caching the flags definitions.
Returns
Promise<void>
Remarks
Call this method before calling getFlags to ensure the flag definitions are cached. The client will ignore subsequent calls to this method.
Inherited from
pushFlagOverrides()
Temporarily layers flag overrides on top of the current overrides.
Parameters
overrides
| Partial<Record<string, FlagOverride>> | FlagOverridesFn
The flag overrides to apply for the scoped period.
Returns
Function
A remove function that removes only this override layer.
Returns
void
Remarks
This is intended for tests or other short-lived local overrides. The remove function is idempotent and can safely be called multiple times.
Example
Inherited from
ReflagClient.pushFlagOverrides
refreshFlags()
Refreshes the flag definitions from the server.
Parameters
waitForVersion?
number
Optional flag state version to wait for before returning updated definitions.
Returns
Promise<void>
Remarks
This triggers an on-demand refresh of the cached flag definitions. Useful when you know flags have changed and don't want to wait for the next automatic refresh cycle.
Note: updated flag rules take a few seconds to propagate to all servers.
Fetch starts are throttled to at most once per second. Outside in-request mode, throttling only delays when the next fetch begins: refreshFlags(99) still waits until the cache has applied flag definitions from version 99 or newer before the promise resolves. Concurrent callers are deduplicated and may share the same in-flight or scheduled follow-up refresh.
In in-request mode, delayed follow-up refreshes are not scheduled. On edge runtimes like Cloudflare Workers, a call during the throttle window only records pending refresh work, and the promise may resolve before that fetch runs. The pending refresh is executed on the next request/access or refreshFlags() call after the throttle window expires.
Inherited from
setFlagOverrides()
Replaces the base flag overrides used by the client.
Parameters
Returns
void
Remarks
Base overrides are always applied before any temporary layers added through pushFlagOverrides().
Example
Inherited from
track()
Tracks an event in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the user is not set or the event is invalid or the options are invalid.
Remarks
If the company is set, the event will be associated with the company.
Inherited from
updateCompany()
Updates the associated company in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the company is not set or the options are invalid.
Remarks
The company must be set using withCompany before calling this method. If the user is set, the company will be associated with the user.
Inherited from
updateUser()
Updates the associated user in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the company is not set or the options are invalid.
Remarks
The company must be set using withCompany before calling this method. If the user is set, the company will be associated with the user.
Inherited from
ReflagClient
The SDK client.
Remarks
This is the main class for interacting with Reflag. It is used to evaluate flags, update user and company contexts, and track events.
Example
Extended by
Constructors
new ReflagClient()
Creates a new SDK client. See README for configuration options.
Parameters
Returns
Throws
An error if the options are invalid.
Properties
Accessors
flagOverrides
Set Signature
Deprecated
Use setFlagOverrides() for replacing the base override set.
Parameters
overrides
| Partial<Record<string, FlagOverride>> | FlagOverridesFn
Returns
void
Methods
bindClient()
Returns a new BoundReflagClient with the user/company/otherContext set to be used in subsequent calls. For example, for evaluating flag targeting or tracking events.
Parameters
Returns
A new client bound with the arguments given.
Throws
An error if the user/company is given but their ID is not a string.
Remarks
The updateUser / updateCompany methods will automatically be called when the user/company is set respectively.
clearFlagOverrides()
Clears the base flag overrides.
Returns
void
Remarks
This does not affect temporary layers added with pushFlagOverrides().
Example
destroy()
Destroys the client and cleans up all resources including timers and background processes.
Returns
void
Remarks
After calling this method, the client should not be used anymore. This is particularly useful in development environments with hot reloading to prevent multiple background processes from running simultaneously.
flush()
Flushes and completes any in-flight fetches in the flag cache.
Returns
Promise<void>
Remarks
It is recommended to call this method when the application is shutting down to ensure all events are sent before the process exits.
This method is automatically called when the process exits if batchOptions.flushOnExit is true in the options (default).
getFlag()
Gets the evaluated flag for the current context which includes the user, company, and custom context. Using the isEnabled property sends a check event to Reflag.
Type Parameters
TKey extends string
Parameters
key
TKey
The key of the flag to get.
Returns
The evaluated flag.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise.
getFlagDefinitions()
Gets the flag definitions, including all config values. To evaluate which flags are enabled for a given user/company, use getFlags.
Returns
The flags definitions.
getFlagRemote()
Gets evaluated flag with the usage of remote context. This method triggers a network request every time it's called.
Type Parameters
TKey extends string
Parameters
Returns
evaluated flag
getFlags()
Gets the evaluated flags for the current context which includes the user, company, and custom context.
Parameters
Returns
The evaluated flags.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise.
getFlagsForBootstrap()
Gets the evaluated flags for the current context without wrapping them in getters. This method returns raw flag data suitable for bootstrapping client-side applications.
Parameters
Returns
The evaluated raw flags and the context.
Remarks
Call initialize before calling this method to ensure the flag definitions are cached, no flags will be returned otherwise. This method returns RawFlag objects without wrapping them in getters, making them suitable for serialization.
getFlagsRemote()
Gets evaluated flags with the usage of remote context. This method triggers a network request every time it's called.
Parameters
Returns
evaluated flags
initialize()
Initializes the client by caching the flags definitions.
Returns
Promise<void>
Remarks
Call this method before calling getFlags to ensure the flag definitions are cached. The client will ignore subsequent calls to this method.
pushFlagOverrides()
Temporarily layers flag overrides on top of the current overrides.
Parameters
overrides
| Partial<Record<string, FlagOverride>> | FlagOverridesFn
The flag overrides to apply for the scoped period.
Returns
Function
A remove function that removes only this override layer.
Returns
void
Remarks
This is intended for tests or other short-lived local overrides. The remove function is idempotent and can safely be called multiple times.
Example
refreshFlags()
Refreshes the flag definitions from the server.
Parameters
waitForVersion?
number
Optional flag state version to wait for before returning updated definitions.
Returns
Promise<void>
Remarks
This triggers an on-demand refresh of the cached flag definitions. Useful when you know flags have changed and don't want to wait for the next automatic refresh cycle.
Note: updated flag rules take a few seconds to propagate to all servers.
Fetch starts are throttled to at most once per second. Outside in-request mode, throttling only delays when the next fetch begins: refreshFlags(99) still waits until the cache has applied flag definitions from version 99 or newer before the promise resolves. Concurrent callers are deduplicated and may share the same in-flight or scheduled follow-up refresh.
In in-request mode, delayed follow-up refreshes are not scheduled. On edge runtimes like Cloudflare Workers, a call during the throttle window only records pending refresh work, and the promise may resolve before that fetch runs. The pending refresh is executed on the next request/access or refreshFlags() call after the throttle window expires.
setFlagOverrides()
Replaces the base flag overrides used by the client.
Parameters
Returns
void
Remarks
Base overrides are always applied before any temporary layers added through pushFlagOverrides().
Example
track()
Tracks an event in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the user is not set or the event is invalid or the options are invalid.
Remarks
If the company is set, the event will be associated with the company.
updateCompany()
Updates the associated company in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the company is not set or the options are invalid.
Remarks
The company must be set using withCompany before calling this method. If the user is set, the company will be associated with the user.
updateUser()
Updates the associated user in Reflag.
Parameters
Returns
Promise<void>
Throws
An error if the company is not set or the options are invalid.
Remarks
The company must be set using withCompany before calling this method. If the user is set, the company will be associated with the user.
Interfaces
ContextWithTracking
A context with tracking option.
Extends
Properties
company?
{ [k: string]: any; avatar: string; id: undefined | string | number; name: string; }
The company context. If no id key is set, the whole object is ignored.
company.avatar?
string
The avatar URL of the company.
company.id
undefined | string | number
The identifier of the company.
company.name?
string
The name of the company.
enableTracking?
boolean
Enable tracking for the context. If set to false, tracking will be disabled for the context. Default is true.
meta?
The meta context used to update the user or company when syncing is required during feature retrieval.
other?
Record<string, any>
The other context. This is used for any additional context that is not related to user or company.
user?
{ [k: string]: any; avatar: string; email: string; id: undefined | string | number; name: string; }
The user context. If no id key is set, the whole object is ignored.
user.avatar?
string
The avatar URL of the user.
user.email?
string
The email of the user.
user.id
undefined | string | number
The identifier of the user.
user.name?
string
The name of the user.
Flag<TConfig>
Describes a feature
Type Parameters
TConfig extends FlagType["config"]
Properties
isEnabled
boolean
If the feature is enabled.
key
string
The key of the feature.
Methods
track()
Track feature usage in Reflag.
Returns
Promise<void>
Flags
Describes a collection of evaluated features.
Remarks
You should extend the Flags interface to define the available features.
FlagsFallbackProvider
Provider used to load and save raw flag definition snapshots.
Methods
load()
Load a previously saved snapshot.
Parameters
context
Returns
Promise<undefined | FlagsFallbackSnapshot>
save()
Persist a snapshot after a successful live fetch.
Parameters
context
snapshot
Returns
Promise<void>
HttpClient
Defines the interface for an HTTP client.
Remarks
This interface is used to abstract the HTTP client implementation from the SDK. Define your own implementation of this interface to use a different HTTP client.
Methods
get()
Sends a GET request to the specified URL.
Type Parameters
TResponse
Parameters
url
string
The URL to send the request to.
timeoutMs
number
‐
Returns
Promise<HttpClientResponse<TResponse>>
The response from the server.
post()
Sends a POST request to the specified URL.
Type Parameters
TBody
TResponse
Parameters
url
string
The URL to send the request to.
body
TBody
The body of the request.
Returns
Promise<HttpClientResponse<TResponse>>
The response from the server.
Logger
Logger interface for logging messages
Properties
debug
(message: string, data?: any) => void
Log a debug messages
error
(message: string, data?: any) => void
Log an error messages
info
(message: string, data?: any) => void
Log an info messages
warn
(message: string, data?: any) => void
Log a warning messages
RawFlag
Describes a feature.
Properties
isEnabled
boolean
If the feature is enabled.
key
string
The key of the feature.
missingContextFields?
string[]
The missing fields in the evaluation context (optional).
ruleEvaluationResults?
boolean[]
The rule results of the evaluation (optional).
targetingVersion?
number
The version of the targeting used to evaluate if the feature is enabled (optional).
Type Aliases
Attributes
Describes the attributes of a user, company or event.
BatchBufferOptions<T>
Options for configuring the BatchBuffer.
Type Parameters
T
The type of items in the buffer.
Type declaration
flushOnExit?
boolean
Whether to flush the buffer on exit.
intervalMs?
number
The interval in milliseconds at which the buffer is flushed.
Remarks
If 0, the buffer is flushed only when maxSize is reached.
maxSize?
number
The maximum size of the buffer before it is flushed.
BootstrappedFlags
Describes a collection of evaluated raw flags and the context for bootstrapping.
Type declaration
CacheStrategy
ClientOptions
Defines the options for the SDK client.
Type declaration
apiBaseUrl?
string
The host to send requests to (optional).
batchOptions?
Omit<BatchBufferOptions<any>, "flushHandler" | "logger">
The options for the batch buffer (optional). If not provided, the default options are used.
configFile?
string
The path to the config file. If supplied, the config file will be loaded. Defaults to reflag.config.json when NODE_ENV is not production. Can also be set through the environment variable REFLAG_CONFIG_FILE.
emitEvaluationEvents?
boolean
Deprecated: evaluation events are no longer emitted.
Deprecated
This option has no effect and will be removed in the next major version.
fallbackFlags?
| TypedFlagKey[] | Record<TypedFlagKey, Exclude<FlagOverride, false>>
The features to "enable" as fallbacks when the API is unavailable (optional). Can be an array of feature keys, or a record of feature keys and boolean or object values.
If a record is supplied instead of array, the values of each key are either the configuration values or the boolean value true.
Deprecated
Use flagsFallbackProvider instead.
fetchTimeoutMs?
number
The timeout in milliseconds for fetching feature targeting data (optional). Default is 10000 ms.
flagOverrides?
| FlagOverrides | (context: Context) => FlagOverrides
Local flag overrides for testing or development.
If a function is specified, the function will be called with the context and should return a record of flag keys and boolean or object values.
flagsFallbackProvider?
Optional provider used to load and save raw flag definitions for fallback startup. Ignored in offline mode.
flagsFetchRetries?
number
Number of times to retry fetching feature definitions (optional). Default is 3 times.
flagsPushUrl?
string
Push endpoint used when flagsSyncMode is "push".
flagsSyncMode?
How flag definitions are synchronized.
push(default): live updates over SSE keep flag definitions up to date.polling: periodic background refresh.in-request: stale refresh is triggered during request handling.
host?
string
Deprecated
Use apiBaseUrl instead.
httpClient?
The HTTP client to use for sending requests (optional). Default is the built-in fetch client.
logLevel?
Use the console logger, but set a log level. Ineffective if a custom logger is provided.
offline?
boolean
In offline mode, no data is sent or fetched from the the Reflag API, and flagsFallbackProvider is not used. This is useful for testing or development.
secretKey?
string
The secret key used to authenticate with the Reflag API.
Context
Describes the current user context, company context, and other context. This is used to determine if feature targeting matches and to track events.
Type declaration
company?
{ [k: string]: any; avatar: string; id: string | number | undefined; name: string; }
The company context. If no id key is set, the whole object is ignored.
company.avatar?
string
The avatar URL of the company.
company.id
string | number | undefined
The identifier of the company.
company.name?
string
The name of the company.
other?
Record<string, any>
The other context. This is used for any additional context that is not related to user or company.
user?
{ [k: string]: any; avatar: string; email: string; id: string | number | undefined; name: string; }
The user context. If no id key is set, the whole object is ignored.
user.avatar?
string
The avatar URL of the user.
user.email?
string
The email of the user.
user.id
string | number | undefined
The identifier of the user.
user.name?
string
The name of the user.
EdgeClientOptions
EmptyFlagRemoteConfig
Type declaration
key
undefined
payload
undefined
FileFallbackProviderOptions
Type declaration
directory?
string
Directory where per-environment snapshots are stored.
FlagAPIResponse
Internal
(Internal) Describes a specific feature in the API response.
Type declaration
config.version
number
The version of the remote configuration.
description
string | null
Description of the feature.
key
string
The key of the feature.
targeting
{ rules: { filter: RuleFilter; }[]; version: number; }
The targeting rules for the feature.
targeting.rules
{ filter: RuleFilter; }[]
The targeting rules.
targeting.version
number
The version of the targeting rules.
FlagConfigVariant
Describes a remote feature config variant.
Type declaration
filter
RuleFilter
The filter for the variant.
key
string
The key of the variant.
payload
any
The optional user-supplied payload data.
FlagDefinition
Describes a feature definition.
Type declaration
config.version
number
The version of the remote configuration.
description
string | null
Description of the feature.
flag
{ rules: { filter: RuleFilter; }[]; version: number; }
The targeting rules for the feature.
flag.rules
{ filter: RuleFilter; }[]
The targeting rules.
flag.version
number
The version of the targeting rules.
key
string
The key of the feature.
FlagOverride
FlagOverrides
Describes the feature overrides.
FlagOverridesFn()
Parameters
context
Returns
FlagRemoteConfig
A remotely managed configuration value for a feature.
Type declaration
{ key: string; payload: any; }
key
string
The key of the matched configuration value.
payload
any
The optional user-supplied payload data.
FlagsAPIResponse
Internal
(Internal) Describes the response of the features endpoint.
Type declaration
flagStateVersion?
number
Optional for backward compatibility; when absent, the snapshot version should be treated as unknown by consumers.
FlagsFallbackProviderContext
Non-secret context passed to fallback providers so they can derive storage keys without access to the raw secret key.
Type declaration
secretKeyHash
string
Deterministic hash of the configured secret key.
FlagsFallbackSnapshot
Snapshot of flag definitions used for fallback initialization.
Type declaration
savedAt
string
ISO timestamp indicating when the snapshot was saved.
version
number
Snapshot schema version.
FlagsSyncMode
FlagType
Type declaration
config?
{ payload: any; }
config.payload
any
GCSFallbackProviderClient
GCSFallbackProviderOptions
Type declaration
bucket
string
Bucket where snapshots are stored.
client?
Optional GCS client. A default client is created when omitted.
Accepts either a legacy bucket().file() client or a generated @googleapis/storage client.
TODO(next major): Replace this with a simpler object-store interface.
keyPrefix?
string
Prefix for generated per-environment keys.
GCSGoogleApisClient
Type declaration
GCSLegacyClient
Type declaration
bucket()
{ file: { download: Promise<[Uint8Array]>; exists: Promise<[boolean]>; save: Promise<unknown>; }; }
HttpClientResponse<TResponse>
Describes the response of a HTTP client.
Type Parameters
TResponse
The type of the response body.
Type declaration
body
TResponse | undefined
The body of the response if available.
ok
boolean
Indicates that the request succeeded.
status
number
The status code of the response.
IdType
LogLevel
RawFlagRemoteConfig
A remotely managed configuration value for a feature.
Type declaration
key
string
The key of the matched configuration value.
missingContextFields?
string[]
The missing fields in the evaluation context (optional).
payload
any
The optional user-supplied payload data.
ruleEvaluationResults?
boolean[]
The rule results of the evaluation (optional).
targetingVersion?
number
The version of the targeting rules used to select the config value.
RawFlags
Describes a collection of evaluated raw flags.
RedisFallbackProviderOptions
Type declaration
S3FallbackProviderOptions
Type declaration
StaticFallbackProviderOptions
Type declaration
TrackingMeta
Describes the meta context associated with tracking.
Type declaration
active?
boolean
Whether the user or company is active.
TrackOptions
Defines the options for tracking of entities.
Type declaration
TypedFlagKey
TypedFlags
Describes a collection of evaluated feature.
Remarks
This types falls back to a generic Record<string, Flag> if the Flags interface has not been extended.
Variables
fallbackProviders
Type declaration
file
(__namedParameters: FileFallbackProviderOptions) => FlagsFallbackProvider
createFileFallbackProvider
gcs
(__namedParameters: GCSFallbackProviderOptions) => FlagsFallbackProvider
createGCSFallbackProvider
redis
(__namedParameters: RedisFallbackProviderOptions) => FlagsFallbackProvider
createRedisFallbackProvider
static
(__namedParameters: StaticFallbackProviderOptions) => FlagsFallbackProvider
createStaticFallbackProvider
LOG_LEVELS
Last updated
Was this helpful?