// Type definitions for react-router-redux v2.1.0 // Project: https://github.com/rackt/react-router-redux // Definitions by: Isman Usoh , Noah Shipley , Dimitri Rosenberg // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// declare namespace ReactRouterRedux { import R = Redux; import H = HistoryModule; const TRANSITION: string; const UPDATE_LOCATION: string; const push: PushAction; const replace: ReplaceAction; const go: GoAction; const goBack: GoForwardAction; const goForward: GoBackAction; const routeActions: RouteActions; type LocationDescriptor = H.Location | H.Path; type PushAction = (nextLocation: LocationDescriptor) => void; type ReplaceAction = (nextLocation: LocationDescriptor) => void; type GoAction = (n: number) => void; type GoForwardAction = () => void; type GoBackAction = () => void; interface RouteActions { push: PushAction; replace: ReplaceAction; go: GoAction; goForward: GoForwardAction; goBack: GoBackAction; } interface HistoryMiddleware extends R.Middleware { listenForReplays(store: R.Store, selectLocationState?: Function): void; unsubscribe(): void; } function routeReducer(state?: any, options?: any): R.Reducer; function syncHistory(history: H.History): HistoryMiddleware; } declare module "react-router-redux" { export = ReactRouterRedux; }