UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

19 lines (18 loc) 642 B
/** * sets globals properties of the current object or point * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; import { JsType } from '../../poly/registers/nodes/types/Js'; declare class OutputJsParamsConfig extends NodeParamsConfig { } export declare class OutputJsNode extends TypedJsNode<OutputJsParamsConfig> { paramsConfig: OutputJsParamsConfig; static type(): JsType; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};