UNPKG

@polygonjs/polygonjs

Version:

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

19 lines (18 loc) 800 B
import { JsConnectionPointType } from '../utils/io/connections/Js'; import { ParamlessTypedJsNode } from './_Base'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare enum MaxLengthJsNodeInputName { VALUE = "value", MAX = "max" } export declare class MaxLengthJsNode extends ParamlessTypedJsNode { static type(): string; initializeNode(): void; setLines(shadersCollectionController: JsLinesCollectionController): void; protected _expectedInputTypes(): JsConnectionPointType[]; protected _expectedOutputTypes(): JsConnectionPointType[]; protected _expectedInputName(index: number): MaxLengthJsNodeInputName; protected _expectedOutputName(index: number): string; paramDefaultValue(name: string): number; } export {};