bitmovin-player-react-native
Version:
Official React Native bindings for Bitmovin's mobile Player SDKs.
23 lines • 676 B
TypeScript
/**
* Contains the state an OfflineContentManager can have.
* @remarks Platform: Android, iOS
*/
export declare enum OfflineState {
/**
* The offline content is downloaded and ready for offline playback.
*/
Downloaded = "Downloaded",
/**
* The offline content is currently downloading.
*/
Downloading = "Downloading",
/**
* The download of the offline content is suspended, and is only partly downloaded yet.
*/
Suspended = "Suspended",
/**
* The offline content is not downloaded. However, some data may be still cached.
*/
NotDownloaded = "NotDownloaded"
}
//# sourceMappingURL=offlineState.d.ts.map