UNPKG

@svta/common-media-library

Version:
15 lines 344 B
import type { EditListEntry } from './EditListEntry.js'; import type { FullBox } from './FullBox.js'; /** * ISO/IEC 14496-12:2012 - 8.6.6 Edit List Box * * @group ISOBMFF * * @beta */ export type EditListBox = FullBox & { type: 'elst'; entryCount: number; entries: EditListEntry[]; }; //# sourceMappingURL=EditListBox.d.ts.map