Interface JsonPatchReplaceOperation<T>

interface JsonPatchReplaceOperation<T> {
    op: "replace";
    path: string;
    value: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

op: "replace"
path: string
value: T