mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
15 lines
517 B
TypeScript
15 lines
517 B
TypeScript
//@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);
|
|
}
|