UNPKG

@svta/common-media-library

Version:
14 lines 335 B
import type { ContainerBox } from './ContainerBox.js'; import type { ItemInfoEntry } from './ItemInfoEntry.js'; /** * Item Info Box - 'iinf' - Container * * @group ISOBMFF * * @beta */ export type ItemInfoBox = ContainerBox<ItemInfoEntry> & { type: 'iinf'; entryCount: number; }; //# sourceMappingURL=ItemInfoBox.d.ts.map