UNPKG

polygonjs-engine

Version:

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

39 lines (38 loc) 2.03 kB
import { BboxExpression } from '../../../expressions/methods/bbox'; import { CentroidExpression } from '../../../expressions/methods/centroid'; import { ChExpression } from '../../../expressions/methods/ch'; import { CopyExpression } from '../../../expressions/methods/copy'; import { CopResExpression } from '../../../expressions/methods/copRes'; import { JsExpression } from '../../../expressions/methods/js'; import { ObjectsCountExpression } from '../../../expressions/methods/objectsCount'; import { OpdigitsExpression } from '../../../expressions/methods/opdigits'; import { PadzeroExpression } from '../../../expressions/methods/padzero'; import { PointExpression } from '../../../expressions/methods/point'; import { PointsCountExpression } from '../../../expressions/methods/pointsCount'; import { StrCharsCountExpression } from '../../../expressions/methods/strCharsCount'; import { StrConcatExpression } from '../../../expressions/methods/strConcat'; import { StrIndexExpression } from '../../../expressions/methods/strIndex'; import { StrSubExpression } from '../../../expressions/methods/strSub'; import { BaseMethod } from '../../../expressions/methods/_Base'; export interface ExpressionMap extends PolyDictionary<typeof BaseMethod> { bbox: typeof BboxExpression; centroid: typeof CentroidExpression; ch: typeof ChExpression; copy: typeof CopyExpression; copRes: typeof CopResExpression; js: typeof JsExpression; objectsCount: typeof ObjectsCountExpression; opdigits: typeof OpdigitsExpression; padzero: typeof PadzeroExpression; point: typeof PointExpression; pointsCount: typeof PointsCountExpression; strCharsCount: typeof StrCharsCountExpression; strConcat: typeof StrConcatExpression; strIndex: typeof StrIndexExpression; strSub: typeof StrSubExpression; } import { PolyEngine } from '../../../Poly'; import { PolyDictionary } from '../../../../types/GlobalTypes'; export declare class AllExpressionsRegister { static run(poly: PolyEngine): void; }