@svta/common-media-library
Version:
A common library for media playback in JavaScript
13 lines • 353 B
TypeScript
import type { ContainerBox } from './ContainerBox.js';
import type { TrackReferenceTypeBox } from './TrackReferenceTypeBox.js';
/**
* Track Reference Box - 'tref' - Container
*
* @group ISOBMFF
*
* @beta
*/
export type TrackReferenceBox = ContainerBox<TrackReferenceTypeBox> & {
type: 'tref';
};
//# sourceMappingURL=TrackReferenceBox.d.ts.map