ComputedEqualsValue
How MobX should compare the previous and next computed value before notifying observers.
'struct'— structural comparison (comparer.structural).'shallow'— shallow comparison (comparer.shallow).true— reference equality (comparer.default).false— skip the annotation (handled by theannotation.computed/annotation.observablehelpers).- A custom
(a, b) => booleanis allowed by the type for parity withIComputedValueOptions.equals.
