Type Alias ConditionPatchInner

type ConditionPatchInner = {
    op: "replace" | "remove" | "add";
    path: string;
    value?: unknown;
}
Index

Properties

Properties

op: "replace" | "remove" | "add"

The operation to be performed.

path: string
value?: unknown