mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
22 lines
559 B
TypeScript
22 lines
559 B
TypeScript
/**
|
|
* @module "ui/builder/binding-builder"
|
|
* @private
|
|
*/ /** */
|
|
|
|
//@private
|
|
export module bindingConstants {
|
|
export var sourceProperty: string;
|
|
export var targetProperty: string;
|
|
export var expression: string;
|
|
export var twoWay: string;
|
|
export var source: string;
|
|
export var bindingValueKey: string;
|
|
export var parentValueKey: string;
|
|
export var parentsValueKey: string;
|
|
export var newPropertyValueKey: string;
|
|
}
|
|
|
|
export function getBindingOptions(name: string, value: string): any;
|
|
|
|
export var parentsRegex: RegExp;
|