adaptive-expressions
Version:
Common Expression Language
21 lines • 542 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Expression } from './expression';
/**
* Interface to parse a string into an Expression
*/
export interface ExpressionParserInterface {
/**
* Parse a string into an Expression
*
* @param expression Expression to parse.
* @returns The resulting expression.
*/
parse(expression: string): Expression;
}
//# sourceMappingURL=expressionParserInterface.d.ts.map