UNPKG

@svta/common-media-library

Version:
19 lines 429 B
import type { FullBox } from './FullBox.js'; import type { ItemLocation } from './ItemLocation.js'; /** * Item Location Box - 'iloc' * * @group ISOBMFF * * @beta */ export type ItemLocationBox = FullBox & { type: 'iloc'; offsetSize: number; lengthSize: number; baseOffsetSize: number; indexSize?: number; itemCount: number; items: ItemLocation[]; }; //# sourceMappingURL=ItemLocationBox.d.ts.map