Interface IInternalEvaluator

interface IInternalEvaluator {
    context: IActionContext;
    evaluatorExpressionEvaluation: ((expr: Expression, mapping: Bindings) => Promise<TermExpression>);
}

Hierarchy (view full)

Properties

evaluatorExpressionEvaluation: ((expr: Expression, mapping: Bindings) => Promise<TermExpression>)