当我使用withRouter
v4.3.2中的react-router-dom
时,它将三个道具传递给组件history
,match
和location
。在哪里可以找到TypeScript的这三个对象的类型定义?
我已经检查了此链接https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router/v3/lib,但是它没有版本4。此外,在那里定义的类型不包括History location and match
。
答案 0 :(得分:0)
import { History, Location } from 'history';
import {match} from 'react-router';
您可以签出@types/react-router
。在那里,您可以看到所有从@types/history
定义和导入的类型。