@svta/common-media-library
Version:
A common library for media playback in JavaScript
13 lines • 341 B
TypeScript
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