Skip to content

@jsvision/ui / ComputedOptions

Interface: ComputedOptions<T>

Defined in: ui/src/reactive/computed.ts:19

Options for computed.

Type Parameters

T

T

Properties

equals?

optional equals?: EqualsOption<T>

Defined in: ui/src/reactive/computed.ts:25

How the computed decides whether a recompute changed the value: a predicate returning true when the new value counts as equal (equal ⇒ observers are not notified), or false to notify on every recompute. Defaults to Object.is.