@zhelvis/structure-ts
    Preparing search index...

    Type Alias ChangeAction

    Represents an action that changes a value at a specific path.

    type ChangeAction = {
        from: unknown;
        path: Path;
        to: unknown;
        type: CHANGE;
    }
    Index

    Properties

    Properties

    from: unknown
    path: Path
    to: unknown
    type: CHANGE