UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

17 lines (16 loc) 527 B
/** * Exports the input as PLY * * @remarks */ import { ExporterSopNode, BaseExporterSopParamsConfig } from './_BaseExporter'; import { SopExporter } from '../../poly/registers/nodes/types/Sop'; declare class ExporterPLYSopParamsConfig extends BaseExporterSopParamsConfig { } export declare class ExporterPLYSopNode extends ExporterSopNode<ExporterPLYSopParamsConfig> { paramsConfig: ExporterPLYSopParamsConfig; static type(): SopExporter; fileExtension(): string; createBlob(): Promise<Blob>; } export {};