Skip to main content

Type Alias: MapMultiTransformedBinding<I, T>

MapMultiTransformedBinding<I, T> = object

Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:36

A binding from multiple sources to a target.

Type Parameters

Type Parameter
I extends readonly any[]
T

Properties

map()

map: (sources) => T

Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:44

A function which transforms source values, as a tuple, before they are applied to the target.

Parameters

ParameterType
sourcesReadonly<I>

Returns

T


sources

sources: MappedSubscribableInputs<I>

Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:38

The sources of the binding.


target

target: MutableSubscribable<any, T>

Defined in: src/sdk/components/mapsystem/controllers/MapBindingsController.ts:41

The target of the binding.