@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
13 lines (12 loc) • 475 B
TypeScript
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("../../../index_all").ParamType.INTEGER>;
};
} & TBase;
export declare class LayersController {
private node;
constructor(node: BaseObjNodeType);
update(): void;
}