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