mobx-keystone
    Preparing search index...

    Interface ObjectAddChange

    A property added to an object.

    interface ObjectAddChange {
        isInit: boolean;
        key: string;
        newValue: unknown;
        path: Path;
        target: object;
        type: ObjectAdd;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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.

    key: string
    newValue: unknown
    path: Path
    target: object
    type: ObjectAdd