polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
9 lines (8 loc) • 330 B
TypeScript
import { BaseMethod } from '../../../expressions/methods/_Base';
export declare class BaseExpressionRegister {
private _methods_names;
private _methods_by_name;
register(expression: typeof BaseMethod, name: string): void;
getMethod(name: string): typeof BaseMethod | undefined;
availableMethods(): string[];
}