import ParserModule from "./ParserModule"; import InstanciationRecipe from "./InstanciationRecipe"; export default class GLTFParser { gl: WebGLRenderingContext; url: string; static parserModules: (typeof ParserModule)[]; private parserModuleInstances; callParserModule(target: (p: ParserModule) => ((arg: G) => T), arg?: G): T; constructor(gl: WebGLRenderingContext, url: string); parse(): Promise; static parseFromURL(gl: WebGLRenderingContext, url: string): Promise; }