Type alias MapChanges

MapChanges: Map<string, {
    action: "add" | "update" | "delete";
    oldValue: any;
}>

Changes on a map-like data.

Generated using TypeDoc