( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store) => void, )
| 853 | useStoreSetCallback(storeOrStoreId, VALUE, getValue, then, valueId); |
| 854 | |
| 855 | export const useDelTablesCallback = ( |
| 856 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 857 | then?: (store: Store) => void, |
| 858 | ): Callback => useDel(storeOrStoreId, TABLES, then); |
| 859 | |
| 860 | export const useDelTableCallback = <Parameter>( |
| 861 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |