* Replaces the reducer currently used by the store to calculate the state. * * You might need this if your app implements code splitting and you want to * load some of the reducers dynamically. You might also need this if you * implement a hot reloading mechanism for Redux. * * @pa
(nextReducer: Reducer<S, A>)
| 154 | * @param nextReducer The reducer for the store to use instead. |
| 155 | */ |
| 156 | replaceReducer(nextReducer: Reducer<S, A>): void |
| 157 | |
| 158 | /** |
| 159 | * Interoperability point for observable/reactive libraries. |
no outgoing calls
no test coverage detected