bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
9 lines • 386 B
TypeScript
import { TextDocument } from '../../../types';
import { VoxelShape } from './voxel-shape';
/**
* Processes a TextDocument containing voxel shape data.
* @param doc The text document to process
* @returns The processed VoxelShape object or undefined if parsing fails
*/
export declare function process(doc: TextDocument): VoxelShape | undefined;
//# sourceMappingURL=process.d.ts.map