UNPKG

@svta/common-media-library

Version:
13 lines 341 B
import type { ContainerBox } from './ContainerBox.js'; import type { DataReferenceBox } from './DataReferenceBox.js'; /** * Data Information Box - 'dinf' - Container * * @group ISOBMFF * * @beta */ export type DataInformationBox = ContainerBox<DataReferenceBox> & { type: 'dinf'; }; //# sourceMappingURL=DataInformationBox.d.ts.map