at-types-search
search d.ts from @types
Install
$ npm -g install at-types-search
Usage
$ @ts

Spec
- Search index file will be saved to
~/.at-types-search/search-index.json
.
- The saved index file will be used as cache until 24 hours have passed.
- Search for types package name(partial match), globals(foward match), modules(foward match).
API
var atTypesSearch = require('at-types-search');
atTypesSearch.search('google').then(function (result) {
...
});
atTypesSearch.search([ 'react', 'redux' ]).then(function (result) {
...
});
atTypesSearch.search('jquery', true).then(function (result) {
...
});
License
MIT
© 2017 ktty1220