UNPKG

@svta/common-media-library

Version:
16 lines 508 B
import type { ContainerBox } from './ContainerBox.js'; import type { MovieExtendsBox } from './MovieExtendsBox.js'; import type { MovieHeaderBox } from './MovieHeaderBox.js'; import type { TrackBox } from './TrackBox.js'; import type { UserDataBox } from './UserDataBox.js'; /** * Movie Box - 'moov' - Container * * @group ISOBMFF * * @beta */ export type MovieBox = ContainerBox<MovieHeaderBox | TrackBox | MovieExtendsBox | UserDataBox> & { type: 'moov'; }; //# sourceMappingURL=MovieBox.d.ts.map