( storeOrStoreId?: StoreOrStoreId, then?: (store: Store) => void, thenDeps?: DependencyList, )
| 1138 | ); |
| 1139 | |
| 1140 | export const useDelValuesCallback: typeof useDelValuesCallbackDecl = ( |
| 1141 | storeOrStoreId?: StoreOrStoreId, |
| 1142 | then?: (store: Store) => void, |
| 1143 | thenDeps?: DependencyList, |
| 1144 | ): Callback => useDel(storeOrStoreId, VALUES, then, thenDeps); |
| 1145 | |
| 1146 | export const useDelValueCallback: typeof useDelValueCallbackDecl = <Parameter>( |
| 1147 | valueId: Id | GetId<Parameter>, |