import { Action } from "redux"; import { History } from "history"; import { match } from "react-router"; export default interface UmiComponentProps { history?: History; location?: History['location'] & { query: any; }; dispatch(action: Action): T; match: match; }