Interface JsonPatchAddOperation<T>

interface JsonPatchAddOperation<T> {
    op: "add";
    path: string;
    value: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

op: "add"
path: string
value: T