UNPKG

bitmovin-player-react-native

Version:

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

22 lines 628 B
/** * Provides options to configure Picture in Picture playback. */ export interface PictureInPictureConfig { /** * Whether Picture in Picture feature is enabled or not. * * Default is `false`. */ isEnabled?: boolean; /** * Defines whether Picture in Picture should start automatically when the app transitions to background. * * Does not have any affect when Picture in Picture is disabled. * * Default is `false`. * * @remarks Platform: iOS 14.2 and above */ shouldEnterOnBackground?: boolean; } //# sourceMappingURL=pictureInPictureConfig.d.ts.map