Interface OperationRemove<T>

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

Type Parameters

  • T = unknown

Hierarchy (view full)

Properties

Properties

oldValue?: T

Value which was remove, for ability to reverse operations.

op: "remove"
path: string | Path