@svta/common-media-library
Version:
A common library for media playback in JavaScript
17 lines • 569 B
TypeScript
import type { ContainerBox } from './ContainerBox.js';
import type { EditBox } from './EditBox.js';
import type { MediaBox } from './MediaBox.js';
import type { TrackHeaderBox } from './TrackHeaderBox.js';
import type { TrackReferenceBox } from './TrackReferenceBox.js';
import type { UserDataBox } from './UserDataBox.js';
/**
* Track Box - 'trak' - Container
*
* @group ISOBMFF
*
* @beta
*/
export type TrackBox = ContainerBox<TrackHeaderBox | TrackReferenceBox | EditBox | MediaBox | UserDataBox> & {
type: 'trak';
};
//# sourceMappingURL=TrackBox.d.ts.map