UNPKG

@svta/common-media-library

Version:
15 lines 293 B
import type { FullBox } from './FullBox.js'; /** * Sample Size Box - 'stsz' * * @group ISOBMFF * * @beta */ export type SampleSizeBox = FullBox & { type: 'stsz'; sampleSize: number; sampleCount: number; entrySize?: number[]; }; //# sourceMappingURL=SampleSizeBox.d.ts.map