Ever since typescript 2.0 rolled out, the use of typings has been replaced with npm install @types/<package-name>.
In the old typings system, we had the typings search
command for package searches.
But now I wonder - what is the standard way to search for type definitions in @types?
Just to clarify, the previous workflow looked like this:
typings search <package-name>
typings install [--global] <package-name>
And now it looks like this:
- This step raises a question
npm install --save-dev @types/<package-name>