Type Alias: MapTransformedBinding<S, T>
MapTransformedBinding<
S,T> =object
Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:22
A binding from a transformed source to a target.
Type Parameters
| Type Parameter |
|---|
S |
T |
Properties
map()
map: (
source) =>T
Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:30
A function which transforms source values before they are applied to the target.
Parameters
| Parameter | Type |
|---|---|
source | S |
Returns
T
source
source:
Subscribable<S>
Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:24
The source of the binding.
target
target:
MutableSubscribable<any,T>
Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:27
The target of the binding.