UNPKG

@loaders.gl/potree

Version:

potree loaders for large point clouds.

22 lines 709 B
import type { LoaderOptions } from '@loaders.gl/loader-utils'; export type POTreeLoaderOptions = LoaderOptions & { potree?: {}; }; /** Potree loader */ export declare const PotreeLoader: { readonly dataType: any; readonly batchType: never; readonly name: "potree metadata"; readonly id: "potree"; readonly module: "potree"; readonly version: any; readonly extensions: ["js"]; readonly mimeTypes: ["application/json"]; readonly testText: (text: string) => boolean; readonly parse: (data: ArrayBuffer) => any; readonly parseTextSync: (text: string) => any; readonly options: { readonly potree: {}; }; }; //# sourceMappingURL=potree-loader.d.ts.map