react-native-theoplayer
Version:
A THEOplayer video component for react-native.
15 lines • 552 B
TypeScript
import type { KeySystemId } from 'react-native-theoplayer';
import type { ContentProtectionIntegrationFactory } from './ContentProtectionIntegrationFactory';
/**
* The Content Protection API.
*
* @category Content Protection
* @public
*/
export interface ContentProtectionAPI {
/**
* Register a content protection integration
*/
registerContentProtectionIntegration(integrationId: string, keySystem: KeySystemId, integrationFactory: ContentProtectionIntegrationFactory): void;
}
//# sourceMappingURL=ContentProtectionAPI.d.ts.map