Files
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

20 lines
586 B
TypeScript

/**
* @module "js-libs/polymer-expressions"
* @private
*/ /** */
//@private
export class PolymerExpressions {
static getExpression(expression: string): Expression;
}
export class Expression {
/**
* Evaluates a value for an expression.
* @param model - Context of the expression.
* @param isBackConvert - Denotes if the convertion is forward (from model to ui) or back (ui to model).
* @param changedModel - A property bag which contains all changed properties (in case of two way binding).
*/
getValue(model, isBackConvert, changedModel);
}