Type Alias: BindingValue
Type Alias: BindingValue
type BindingValue = number | boolean | string | Function | object | symbol;
A union type representing the possible values that can be bound in the container.
Binding values can be of various types, including numbers, booleans, strings, functions, objects, or symbols. Unlike BindingKey, BindingValue represents the actual data or instance being bound, while BindingKey represents the identifier used to access that data.
