Type Alias PatchRequest

PatchRequest: {
    op: "add" | "replace" | "remove";
    path: string;
    value?: string | boolean | number | unknown[];
}[]

Type Declaration

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

    Operation type

  • path: string
  • Optionalvalue?: string | boolean | number | unknown[]