1 | //@private
|
2 | export module bindingConstants {
|
3 | export const sourceProperty: string;
|
4 | export const targetProperty: string;
|
5 | export const expression: string;
|
6 | export const twoWay: string;
|
7 | export const source: string;
|
8 | export const bindingValueKey: string;
|
9 | export const parentValueKey: string;
|
10 | export const parentsValueKey: string;
|
11 | export const newPropertyValueKey: string;
|
12 | }
|
13 |
|
14 | export function getBindingOptions(name: string, value: string): any;
|
15 |
|
16 | export const parentsRegex: RegExp;
|