polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
15 lines (14 loc) • 503 B
TypeScript
import { AttributeJsNode } from '../../../nodes/js/Attribute';
import { GlobalsJsNode } from '../../../nodes/js/Globals';
import { OutputJsNode } from '../../../nodes/js/Output';
import { ParamJsNode } from '../../../nodes/js/Param';
export interface JsNodeChildrenMap {
attribute: AttributeJsNode;
globals: GlobalsJsNode;
output: OutputJsNode;
param: ParamJsNode;
}
import { PolyEngine } from '../../../Poly';
export declare class JsRegister {
static run(poly: PolyEngine): void;
}