manageMaps
Generic types: | T |
Helper function that updates the maps used in update-effect.function.ts so we can implement optimistic updates and can rollback on error when needed.
Presentation
function manageMaps (
lastRow: Map<string, T>,
lastRowTimeout: Map<string, number>,
action: { old: RowProp <T>; new: RowProp <T> },
): void;
Returns
void