@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 527 B
TypeScript
/**
* Exports the input as STL
*
* @remarks
*/
import { ExporterSopNode, BaseExporterSopParamsConfig } from './_BaseExporter';
import { SopExporter } from '../../poly/registers/nodes/types/Sop';
declare class ExporterSTLSopParamsConfig extends BaseExporterSopParamsConfig {
}
export declare class ExporterSTLSopNode extends ExporterSopNode<ExporterSTLSopParamsConfig> {
paramsConfig: ExporterSTLSopParamsConfig;
static type(): SopExporter;
fileExtension(): string;
createBlob(): Promise<Blob>;
}
export {};