( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store) => void, )
| 883 | useDel(storeOrStoreId, CELL, then, tableId, rowId, cellId, forceDel); |
| 884 | |
| 885 | export const useDelValuesCallback = ( |
| 886 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 887 | then?: (store: Store) => void, |
| 888 | ): Callback => useDel(storeOrStoreId, VALUES, then); |
| 889 | |
| 890 | export const useDelValueCallback = <Parameter>( |
| 891 | valueId: MaybeAccessor<Id> | GetId<Parameter>, |