Home > @firebase/remote-config > FetchStatus
FetchStatus type
Summarizes the outcome of the last attempt to fetch config from the Firebase Remote Config server.
- "no-fetch-yet" indicates the [RemoteConfig](./remote-config.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.
Signature:
export declare type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';