map()
Transforms the bound value, using the provided function.
map<U>(f: (value: T) => U): Binding<U>;
Parameters
- f — A function that maps the bound value to a new value
Return value
A new binding, typed as the new value
Related
class Binding
A class that represents a property binding.
