@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
18 lines (17 loc) • 570 B
TypeScript
/**
* Exports the input as STEP
*
* @remarks
*/
import { BaseExporterSopParamsConfig } from './_BaseExporter';
import { CADExporterSopNode } from './_BaseExporterCAD';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class ExporterSTEPSopParamsConfig extends BaseExporterSopParamsConfig {
}
export declare class CADExporterSTEPSopNode extends CADExporterSopNode<ExporterSTEPSopParamsConfig> {
paramsConfig: ExporterSTEPSopParamsConfig;
static type(): SopType;
fileExtension(): string;
createBlob(): Promise<Blob>;
}
export {};