UNPKG

polygonjs-engine

Version:

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

14 lines (13 loc) 502 B
import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { LinesController } from './code/utils/LinesController'; declare class OutputJsParamsConfig extends NodeParamsConfig { } export declare class OutputJsNode extends TypedJsNode<OutputJsParamsConfig> { params_config: OutputJsParamsConfig; static type(): string; initializeNode(): void; create_params(): void; set_lines(lines_controller: LinesController): void; } export {};