Type Alias JSONPatchRequestMoveCopy

type JSONPatchRequestMoveCopy = {
    from: string;
    op: "move" | "copy";
    path: string;
}
Index
from: string

A JSON Pointer path.

op: "move" | "copy"

The operation to perform.

path: string

A JSON Pointer path.