UNPKG

@svta/common-media-library

Version:
13 lines 281 B
import type { Box } from './Box.js'; import type { ContainerBox } from './ContainerBox.js'; /** * User Data Box - 'udta' - Container * * @group ISOBMFF * * @beta */ export type UserDataBox = ContainerBox<Box> & { type: 'udta'; }; //# sourceMappingURL=UserDataBox.d.ts.map