Interface PatchOperationInterface

interface PatchOperationInterface {
    field: string;
    from?: string;
    operation:
        | "add"
        | "copy"
        | "increment"
        | "move"
        | "remove"
        | "replace"
        | "transform";
    value?: any;
}

Properties

field: string
from?: string
operation:
    | "add"
    | "copy"
    | "increment"
    | "move"
    | "remove"
    | "replace"
    | "transform"
value?: any