(
nextReducer: Reducer<NewState, NewActions>,
)
| 29 | getState(): S; |
| 30 | subscribe(listener: () => void): Unsubscribe; |
| 31 | replaceReducer<NewState, NewActions extends Action>( |
| 32 | nextReducer: Reducer<NewState, NewActions>, |
| 33 | ): Store<ExtendState<NewState, StateExt>, NewActions, StateExt, Ext> & Ext; |
| 34 | } |