UNPKG

@tolokoban/tgd

Version:

ToloGameDev library for WebGL2

13 lines 353 B
import { TgdFormatGltf } from "../../types/gltf"; /** * @see https://www.khronos.org/files/gltf20-reference-guide.pdf */ export declare function parseGLB(data: ArrayBuffer): { gltf: TgdFormatGltf; chunks: ArrayBuffer[]; chunkTypes: Array<{ size: number; type: "JSON" | "BIN"; }>; }; //# sourceMappingURL=parser.d.ts.map