@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
9 lines (8 loc) • 363 B
TypeScript
import { BaseNamedFunction } from '../../../functions/_Base';
export interface NamedFunctionRegisterOptions {
printWarnings?: boolean;
}
export declare class BaseNamedFunctionRegister {
protected _functionByName: Map<string, typeof BaseNamedFunction>;
register(namedFunction: typeof BaseNamedFunction, options?: NamedFunctionRegisterOptions): void;
}