UNPKG

vox-reader

Version:

Takes a Byte Array of .vox file data and returns a JavaScript Object with all the containing informations

4 lines (3 loc) 142 B
import { VoxStructure } from "../types/types"; declare const readVox: (buffer: Array<number> | Uint8Array) => VoxStructure; export = readVox;