Type Alias JSONPatchRequestAddReplaceTest

type JSONPatchRequestAddReplaceTest = {
    op: "add" | "replace" | "test";
    path: string;
    value: unknown;
}
Index

Properties

Properties

op: "add" | "replace" | "test"

The operation to perform.

path: string
value: unknown