(tableId, rowId, cellId, forceDel, storeOrStoreId, 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, |
| 683 | then, |
| 684 | thenDeps, |
| 685 | tableId, |
| 686 | rowId, |
| 687 | cellId, |
| 688 | forceDel |
| 689 | ); |
| 690 | var useDelValuesCallback = (storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, VALUES, then, thenDeps); |
| 691 | var useDelValueCallback = (valueId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, VALUE, then, thenDeps, valueId); |
| 692 | var useHasTablesListener = (listener, listenerDeps, mutator, storeOrStoreId) => useListener( |
nothing calls this directly
no test coverage detected
searching dependent graphs…