| 873 | useDel(storeOrStoreId, ROW, then, tableId, rowId); |
| 874 | |
| 875 | export const useDelCellCallback = <Parameter>( |
| 876 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
| 877 | rowId: MaybeAccessor<Id> | GetId<Parameter>, |
| 878 | cellId: MaybeAccessor<Id> | GetId<Parameter>, |
| 879 | forceDel?: boolean, |
| 880 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 881 | then?: (store: Store) => void, |
| 882 | ): ParameterizedCallback<Parameter> => |
| 883 | useDel(storeOrStoreId, CELL, then, tableId, rowId, cellId, forceDel); |
| 884 | |
| 885 | export const useDelValuesCallback = ( |
| 886 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |