UNPKG

isobmff-inspector

Version:

Simple ISOBMFF parser, compatible with JavaScript and Node.JS

12 lines 425 B
export type BoxDefinition<T extends { [k: string]: unknown; }> = { name?: string | undefined; description?: string | undefined; container?: boolean | undefined; parser?: ((reader: import("../BoxReader.js").BoxReader<T>) => void) | undefined; getChildDefinition?: ((type: string) => BoxDefinition<{ [key: string]: unknown; }> | undefined) | undefined; }; //# sourceMappingURL=types.d.ts.map