UNPKG

@svta/common-media-library

Version:
13 lines 353 B
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