UNPKG

@svta/common-media-library

Version:
16 lines 353 B
import type { FullBox } from './FullBox.js'; /** * Sample Group Description Box - 'sgpd' * * @group ISOBMFF * * @beta */ export type SampleGroupDescriptionBox = FullBox & { type: 'sgpd'; groupingType: number; defaultLength?: number; entryCount: number; entries: any[]; }; //# sourceMappingURL=SampleGroupDescriptionBox.d.ts.map