UNPKG

@svta/common-media-library

Version:
14 lines 409 B
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