Documentation

bindAll()

Creates a new binding to observe the specified properties, combining them using AND semantics.

bindAll<K extends Binding.BoundPath<NonNullable<T>>>(
...sourcePaths: (K | undefined)[]
): Binding<
{
[P in K]: Binding.BoundPathValue<T, P>;
}[K]
>;

Notes

Parameters

Return value

A new binding

Related