Documentation

Binding​.observe()

Creates a new binding that references a property of the provided object.

static observe<TObject extends ObservableObject, K extends keyof TObject>(
object: TObject,
propertyName: K,
): Binding<TObject[K]>;

Notes

Parameters

Return value

A new Binding object

Related