at-types-search
v0.1.0
Published
search d.ts from @types
Downloads
5
Readme
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');
// single word
atTypesSearch.search('google').then(function (result) {
...
});
// multi words (AND)
atTypesSearch.search([ 'react', 'redux' ]).then(function (result) {
...
});
// force update cache
atTypesSearch.search('jquery', true).then(function (result) {
...
});
License
© 2017 ktty1220