Is there a way to access the typings for react-router in my project? My package.json file currently has this dependency:
{
"@types/react-router": "^4.0.3"
}
However, it seems to be using the standard index.d.ts file from DefinitelyTyped library which is suitable for react-router 1.0.
I noticed that there are separate folders in DefinitelyTyped for v2 and v3 - I think v3 will have what I need.
How can I integrate the v3 folder into my project?
Do I need to manually add the typings from the folder, or is there an automated way to do this?