BindingPointEntry Interface
describes a binding point entry as returned from Bindings#getAvailableBindingPoints
interface BindingPointEntry
{
bindableId: string;
bindingPointId: string;
displayName: string;
isSource: boolean;
isTarget: boolean;
}
#bindableId
The id of the bindable object
bindableId: string;
#bindingPointId
The id of the binding point on the bindable object
bindingPointId: string;
#displayName
The display name of the binding point
displayName: string;
#isSource
Indicates if this binding point can be used as a source binding point
isSource: boolean;
#isTarget
Indicates if this binding point can be used as a target binding point
isTarget: boolean;