@svta/common-media-library
Version:
A common library for media playback in JavaScript
14 lines • 409 B
TypeScript
import type { ContainerBox } from './ContainerBox.js';
import type { ProtectionSchemeInformationBox } from './ProtectionSchemeInformationBox.js';
/**
* Item Protection Box - 'ipro' - Container
*
* @group ISOBMFF
*
* @beta
*/
export type ItemProtectionBox = ContainerBox<ProtectionSchemeInformationBox> & {
type: 'ipro';
protectionCount: number;
};
//# sourceMappingURL=ItemProtectionBox.d.ts.map