mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-30 11:14:27 +08:00
The original file contained:
```
/**
* A component that renders a React Router app using router state from a Redux store.
*/
export class ReactRouter { }
```
The exported ``ReactRouter ` class is empty but it is supposed to be the ReactRouter.
I removed the empty class and exported the the ReactRouter instead:
```
declare module "redux-router/lib/ReduxRouter" {
import Router from "react-router";
export default Router;
}
```