@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
21 lines (20 loc) • 900 B
TypeScript
/**
* Update the WFC Build
*
*
*/
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
import { JsType } from '../../poly/registers/nodes/types/Js';
import { BaseTriggerAndObjectJsNode } from './_BaseTriggerAndObject';
import { JsConnectionPoint, JsConnectionPointType } from '../utils/io/connections/Js';
declare class WFCBuildJsParamsConfig extends NodeParamsConfig {
}
export declare class WFCBuildJsNode extends BaseTriggerAndObjectJsNode<WFCBuildJsParamsConfig> {
readonly paramsConfig: WFCBuildJsParamsConfig;
static type(): JsType;
protected _additionalInputs(): JsConnectionPoint<JsConnectionPointType>[];
protected _additionalOutputs(): JsConnectionPoint<JsConnectionPointType>[];
setTriggerableLines(linesController: JsLinesCollectionController): void;
}
export {};