@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
24 lines (23 loc) • 940 B
TypeScript
/**
* return the length of an array
*
*
*
*/
import { JsConnectionPointType, JsConnectionPointTypeArray } from '../utils/io/connections/Js';
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class ArrayLengthJsParamsConfig extends NodeParamsConfig {
}
export declare class ArrayLengthJsNode extends TypedJsNode<ArrayLengthJsParamsConfig> {
readonly paramsConfig: ArrayLengthJsParamsConfig;
static type(): string;
initializeNode(): void;
protected _expectedInputTypes(): JsConnectionPointTypeArray[];
protected _expectedInputName(index: number): string;
protected _expectedOutputName(index: number): string;
protected _expectedOutputTypes(): JsConnectionPointType[];
setLines(shadersCollectionController: JsLinesCollectionController): void;
}
export {};