I want to create Typescript definitions for react-router-relay but the extending nature of react-router-relay is giving me a hard time. react-router is exposing a Router Component with some properties, also including a render property. react-router-relay uses this render property to supply Router with middleware. After this Router also accepts a environment property at which Relay can be given.
How do I tell typescript that in my module react-router-relay I extend the definitions of module react-router?
I tried following, but then I would have to copy every component of react-router:
declare module "react-router-relay" {
import {Middleware} from "react-router/lib/applyRouterMiddleware";
import Router from "react-router/lib/Router";
import self from "react-router/lib/Route";
const RelayMiddleware:Middleware;
export default RelayMiddleware;
export interface RelayRouter extends React.ComponentClass<RelayRouterProps> { }
interface RelayRouterProps extends Router.RouterProps {
render?(...middlewares: any[]): any
environment?: any
}
namespace Route {
import RouteProps = self.RouteProps;
export interface RelayRouterProps extends RouteProps {
name?: string;
queries?: any;
render(props: any): React.Component<any, any>
}
}
}
Is it also possible to only extend the RouterProps and RouteProps of react-router directly?
Edit: router-relay is applied like:
import useRelay from 'react-router-relay';
...
<Router
history={browserHistory}
routes={routes}
render={applyRouterMiddleware(useRelay)}
environment={Relay.Store}
/>