UNPKG

bitmovin-player-react-native

Version:

Official React Native bindings for Bitmovin's mobile Player SDKs.

18 lines 644 B
import { NativeInstanceConfig } from '../nativeInstance'; import { SourceConfig } from '../source'; /** * Object used to configure a new `OfflineContentManager` instance. * @remarks Platform: Android, iOS */ export interface OfflineContentConfig extends NativeInstanceConfig { /** * An identifier for this source that is unique within the location and must never change. * The root folder will contain a folder based on this id. */ identifier: string; /** * The `SourceConfig` used to download the offline resources. */ sourceConfig: SourceConfig; } //# sourceMappingURL=offlineContentConfig.d.ts.map