我在哪里可以找到 react-router-dom Location、History 和 Match 的类型?
Where can I find types for react-router-dom Location, History and Match?
当我使用 react-router-dom
v4.3.2 中的 withRouter
时,它将三个属性传递给组件,history
、match
和 location
。在哪里可以找到 TypeScript 的这三个对象的类型定义?
我查过这个linkhttps://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router/v3/lib但是它没有版本4。此外,那里定义的类型不包括History location and match
。
import { History, Location } from 'history';
import {match} from 'react-router';
您可以查看@types/react-router
。在那里您可以看到从 @types/history
.
定义和导入的所有类型
当我使用 react-router-dom
v4.3.2 中的 withRouter
时,它将三个属性传递给组件,history
、match
和 location
。在哪里可以找到 TypeScript 的这三个对象的类型定义?
我查过这个linkhttps://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router/v3/lib但是它没有版本4。此外,那里定义的类型不包括History location and match
。
import { History, Location } from 'history';
import {match} from 'react-router';
您可以查看@types/react-router
。在那里您可以看到从 @types/history
.