Interface PatchAddOperation<T>

interface PatchAddOperation<T> {
    op: "add";
    path: Path;
    value: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

op: "add"
path: Path
value: T