UNPKG

polygonjs-engine

Version:

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

13 lines (12 loc) 480 B
import { Constructor } from '../../../../types/GlobalTypes'; import { BaseObjNodeType } from '../_Base'; export declare function LayerParamConfig<TBase extends Constructor>(Base: TBase): { new (...args: any[]): { layer: import("../../utils/params/ParamsConfig").ParamTemplate<import("../../../poly/ParamType").ParamType.INTEGER>; }; } & TBase; export declare class LayersController { private node; constructor(node: BaseObjNodeType); update(): void; }