CombineReducersFunction Type
Deprecated in 4.15.0. Use your state management types instead.
CombineReducersFunction = (reducers: A) => (state: CombinedReducerState<A>, action: ReducerMapActions<A>) => CombinedReducerState<A>
So we don't actually need to implement our own version of combineReducers, but we are going to cast it to this type, which will do a better job of preserving/deducing the Action and State types.
Defined in
Last Updated: 14 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.