type Binding.Options
Options that can be passed to the Binding constructor.
type Options = {
readonly path: (string | number | symbol)[];
readonly default?: any;
readonly origin?: ObservableObject;
};Instance members
path readonly
The source property path, as an array.default readonly
Default value, used when the bound value itself is undefined.origin readonly
The origin object to observe, if specified.
Related
class Binding
A class that represents a property binding.
