Type Alias NotificationPatch

A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.

type NotificationPatch = {
    op: "replace";
    path: "/read";
    value: string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: "/read"
value: string