UNPKG

@svta/common-media-library

Version:
15 lines 354 B
import type { FullBox } from './FullBox.js'; import type { SampleToChunkEntry } from './SampleToChunkEntry.js'; /** * Sample to Chunk Box - 'stsc' * * @group ISOBMFF * * @beta */ export type SampleToChunkBox = FullBox & { type: 'stsc'; entryCount: number; entries: SampleToChunkEntry[]; }; //# sourceMappingURL=SampleToChunkBox.d.ts.map