@svta/common-media-library
Version:
A common library for media playback in JavaScript
14 lines • 396 B
TypeScript
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