How do I see all the member methods and properties of an external library like a node module?

Suppose I have something like:

 

import GoogleMapReact from 'google-map-react';

 

How do I see all the methods and properties of GoogleMapReact?

 

 

 

1

Where would you like to see them? Is it about code completion, or?

1

Yes code completion, like typing in "GoogleMapReact." and seeing a list of methods and properties. But I'm open to all the other ways of seeing them in webstorm that I didn't think of.

0

installing typings (using npm install @types/google-map-react, or via the intention available on Alt+Enter - see https://www.jetbrains.com/help/webstorm/configuring-javascript-libraries.html#ws_jsconfigure_libraries_ts_definition_files) should help:

 

 

1

Thank you so much Elena

1

请先登录再写评论。