Files
NativeScript/ui/builder/binding-builder.d.ts
Nedyalko Nikolov e7156b53bd Fixed issue #814.
2015-10-01 16:13:51 +03:00

19 lines
591 B
TypeScript

//@private
declare module "ui/builder/binding-builder" {
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;
}