(tableId, rowId, storeOrStoreId, then)
| 581 | var useDelTablesCallback = (storeOrStoreId, then) => useDel(storeOrStoreId, TABLES, then); |
| 582 | var useDelTableCallback = (tableId, storeOrStoreId, then) => useDel(storeOrStoreId, TABLE, then, tableId); |
| 583 | var useDelRowCallback = (tableId, rowId, storeOrStoreId, then) => useDel(storeOrStoreId, ROW, then, tableId, rowId); |
| 584 | var useDelCellCallback = (tableId, rowId, cellId, forceDel, storeOrStoreId, then) => useDel(storeOrStoreId, CELL, then, tableId, rowId, cellId, forceDel); |
| 585 | var useDelValuesCallback = (storeOrStoreId, then) => useDel(storeOrStoreId, VALUES, then); |
| 586 | var useDelValueCallback = (valueId, storeOrStoreId, then) => useDel(storeOrStoreId, VALUE, then, valueId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…