UNPKG

@polygonjs/polygonjs

Version:

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

22 lines (21 loc) 886 B
/** * Update the viewer * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class SetViewerJsParamsConfig extends NodeParamsConfig { /** @param sets the class of the viewer */ className: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>; /** @param set or unset */ set: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>; } export declare class SetViewerJsNode extends TypedJsNode<SetViewerJsParamsConfig> { readonly paramsConfig: SetViewerJsParamsConfig; static type(): string; initializeNode(): void; setTriggerableLines(shadersCollectionController: JsLinesCollectionController): void; } export {};