I often find myself hovering over functions or objects in VSCode
with TypeScript
to inspect their type.
However, many times the types and interfaces of these objects are dependent on other interfaces and types, making it difficult to get detailed information from just hovering.
To truly inspect the type, I have to manually search through node modules to locate the type declaration and analyze it there.
Is there a simple way to easily examine nested types within VSCode
?
For example, take a look at this screenshot: https://i.sstatic.net/v2nhI.png
It would be great to have a convenient method for examining the interface of React.FunctionComponent
.