Interface: ObjectUpdateChange
A property updated in an object.
Extends
Properties
isInit
readonly isInit: boolean;
Whether this change occurred during initialization (e.g., setting default values, onInit modifications).
This is true when the change is part of snapshot initialization, false for runtime changes.
Inherited from
isReentrant?
readonly optional isReentrant?: boolean;
Whether this notification overlaps a mutation made by a change listener.
Inherited from
key
readonly key: string;
newValue
readonly newValue: unknown;
oldValue
readonly oldValue: unknown;
path
readonly path: Path;
Inherited from
target
readonly target: object;
type
readonly type: ObjectUpdate;