Interface OperationReplace<V, O>

interface OperationReplace<V, O> {
    oldValue?: O;
    op: "replace";
    path: string | Path;
    value: V;
}

Type Parameters

  • V = unknown
  • O = unknown

Hierarchy (view full)

Properties

Properties

oldValue?: O
op: "replace"
path: string | Path
value: V