redux-router5
Version:
Router5 integration with redux
11 lines (10 loc) • 327 B
TypeScript
import { State } from 'router5';
import { Reducer } from 'redux';
interface Router5ReducerState {
route: State | null;
previousRoute: State | null;
transitionRoute: State | null;
transitionError: any | null;
}
declare const router5Reducer: Reducer<Router5ReducerState>;
export default router5Reducer;