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