Files
NativeScript/js-libs/polymer-expressions/polymer-expressions.d.ts
2015-04-01 11:45:30 +03:00

16 lines
599 B
TypeScript

//@private
declare module "js-libs/polymer-expressions" {
class PolymerExpressions {
static getExpression(expression: string): Expression;
}
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);
}
}