Interface PatchReplaceOperation<T>

interface PatchReplaceOperation<T> {
    op: "replace";
    path: Path;
    value: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

op: "replace"
path: Path
value: T