UNPKG

@loaders.gl/potree

Version:

potree loaders for large point clouds.

20 lines 886 B
import type { POTreeLoaderOptions } from "./potree-loader.js"; import type { POTreeNode } from "./parsers/parse-potree-hierarchy-chunk.js"; /** Potree hierarchy chunk loader */ export declare const PotreeHierarchyChunkLoader: { readonly dataType: POTreeNode; readonly batchType: never; readonly name: "potree Hierarchy Chunk"; readonly id: "potree-hrc"; readonly module: "potree"; readonly version: any; readonly extensions: ["hrc"]; readonly mimeTypes: ["application/octet-stream"]; readonly parse: (arrayBuffer: ArrayBuffer, options: POTreeLoaderOptions | undefined) => Promise<POTreeNode>; readonly parseSync: (arrayBuffer: ArrayBuffer, options: POTreeLoaderOptions | undefined) => POTreeNode; readonly options: { readonly potree: {}; }; readonly binary: true; }; //# sourceMappingURL=potree-hierarchy-chunk-loader.d.ts.map