在哪里可以找到反应路由器的位置,历史和匹配类型?

时间:2019-06-05 06:51:18

标签: typescript react-router react-router-v4

当我使用withRouter v4.3.2中的react-router-dom时,它将三个道具传递给组件historymatchlocation。在哪里可以找到TypeScript的这三个对象的类型定义?

我已经检查了此链接https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router/v3/lib,但是它没有版本4。此外,在那里定义的类型不包括History location and match

1 个答案:

答案 0 :(得分:0)

import { History, Location } from 'history';
import {match} from 'react-router';

您可以签出@types/react-router。在那里,您可以看到所有从@types/history定义和导入的类型。