UNPKG

@svta/common-media-library

Version:
14 lines 272 B
import type { FullBox } from './FullBox.js'; /** * Chunk Offset Box - 'stco' * * @group ISOBMFF * * @beta */ export type ChunkOffsetBox = FullBox & { type: 'stco'; entryCount: number; chunkOffset: number[]; }; //# sourceMappingURL=ChunkOffsetBox.d.ts.map