Documentation

Binding​.combine()

Creates a new binding by combining multiple bindings into a single value.

static combine<R>(
sources: Array<string | Binding>,
callback: (...values: any[]) => R,
allowPartial?: boolean,
): Binding<R>;

Summary

The callback receives the latest values from all sources and returns the combined result.

Parameters

Return value

A new Binding object

Related