UNPKG

@svta/common-media-library

Version:
15 lines 354 B
import type { EncryptedSample } from './EncryptedSample.js'; import type { FullBox } from './FullBox.js'; /** * Sample Encryption Box - 'senc' * * @group ISOBMFF * * @beta */ export type SampleEncryptionBox = FullBox & { type: 'senc'; sampleCount: number; samples: EncryptedSample[]; }; //# sourceMappingURL=SampleEncryptionBox.d.ts.map