import type { BoxParserMap } from './BoxParserMap.js'; /** * ISO View configuration * * @group ISOBMFF * * @beta */ export type IsoViewConfig = { /** * A map of box parsers to their box types */ parsers?: BoxParserMap; /** * Whether to parse boxes recursively */ recursive?: boolean; }; //# sourceMappingURL=IsoViewConfig.d.ts.map