json-joy
    Preparing search index...

    Interface OperationRemove<T>

    interface OperationRemove<T = unknown> {
        oldValue?: T;
        op: "remove";
        path: string | Path;
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    oldValue?: T

    Value which was remove, for ability to reverse operations.

    op: "remove"
    path: string | Path