UNPKG

@svta/common-media-library

Version:
15 lines 315 B
import type { FullBox } from './FullBox.js'; /** * ISO/IEC 14496-12:2012 - 8.12.5 Scheme Type Box * * @group ISOBMFF * * @beta */ export type SchemeTypeBox = FullBox & { type: 'schm'; schemeType: number; schemeVersion: number; schemeUri?: string; }; //# sourceMappingURL=SchemeTypeBox.d.ts.map