<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@firebase/remote-config](./remote-config.md) &gt; [FetchStatus](./remote-config.fetchstatus.md)

## FetchStatus type

Summarizes the outcome of the last attempt to fetch config from the Firebase Remote Config server.

<ul> <li>"no-fetch-yet" indicates the [RemoteConfig](./remote-config.remoteconfig.md) instance has not yet attempted to fetch config, or that SDK initialization is incomplete.</li> <li>"success" indicates the last attempt succeeded.</li> <li>"failure" indicates the last attempt failed.</li> <li>"throttle" indicates the last attempt was rate-limited.</li> </ul>

<b>Signature:</b>

```typescript
export declare type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
```
