(tableId, rowId, storeOrStoreId, then, thenDeps)
| 677 | var useDelTablesCallback = (storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, TABLES, then, thenDeps); |
| 678 | var useDelTableCallback = (tableId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, TABLE, then, thenDeps, tableId); |
| 679 | var useDelRowCallback = (tableId, rowId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, ROW, then, thenDeps, tableId, rowId); |
| 680 | var useDelCellCallback = (tableId, rowId, cellId, forceDel, storeOrStoreId, then, thenDeps) => useDel( |
| 681 | storeOrStoreId, |
| 682 | CELL, |
nothing calls this directly
no test coverage detected
searching dependent graphs…