Type alias MapChange

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

Definition of the map changes for yjs.

Generated using TypeDoc