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

    Type Alias RemoveAction

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

    type RemoveAction = {
        path: Path;
        type: REMOVE;
        value: unknown;
    }
    Index

    Properties

    Properties

    path: Path
    type: REMOVE
    value: unknown