UNPKG

@svta/common-media-library

Version:
14 lines 396 B
import type { Box } from './Box.js'; import type { ContainerBox } from './ContainerBox.js'; import type { TrackEncryptionBox } from './TrackEncryptionBox.js'; /** * Scheme Information Box - 'schi' - Container * * @group ISOBMFF * * @beta */ export type SchemeInformationBox = ContainerBox<TrackEncryptionBox | Box> & { type: 'schi'; }; //# sourceMappingURL=SchemeInformationBox.d.ts.map