UNPKG

@svta/common-media-library

Version:
10 lines 233 B
import type { Box } from './Box.js'; /** * Utility type to get just the fields of a box * * @group ISOBMFF * * @beta */ export type Fields<T> = Omit<T, Exclude<keyof Box, 'data'> | 'boxes'>; //# sourceMappingURL=Fields.d.ts.map