Type Alias JSONPatchRequestMoveCopy

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

Properties

Properties

from: string

A JSON Pointer path.

op: "move" | "copy"
path: string