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

    Type Alias AddAction

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

    type AddAction = {
        path: Path;
        type: ADD;
        value: unknown;
    }
    Index

    Properties

    Properties

    path: Path
    type: ADD
    value: unknown