import { RouteComponentProps as BasicRouteProps, RouteProps, match } from 'react-router-dom'; type IncludeRoute = 'component' | 'exact' | 'path'; type RouteType = Pick; export default interface RouterTypes extends BasicRouteProps { computedMatch?: match

; route?: RouteType & T; }