Before moving to Typescript I was using react-proptypes-generate extension for VS Code, this saved me ton of time, it is so time-consuming to type props manually by hand, to make matters worse if you are using external libraries finding correct types is also time-consuming.
Is there any way to automate generation of typescript types for props in Typescript (at least partially) or to infer them automatically?
Edit :
To be clear, I am not trying to migrate from prop types to typescript, I have already removed the old proptypes from the code when moving to TS, what I want is way to auto generate typescript types for props?