DefinitelyTyped/types/gapi.client.customsearch
..
gapi.client.customsearch-tests.ts
index.d.ts
readme.md
tsconfig.json
tslint.json

TypeScript typings for CustomSearch API v1

Searches over a website or collection of websites For detailed description please check documentation.

Installing

Install typings for CustomSearch API:

npm install @types/gapi.client.customsearch@v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load("client", () => { 
    // now we can use gapi.client
    // ... 
});

Then load api client wrapper:

gapi.client.load('customsearch', 'v1', () => {
    // now we can use gapi.client.customsearch
    // ... 
});

After that you can use CustomSearch API resources:

    
/* 
Returns metadata about the search performed, metadata about the custom search engine used for the search, and the search results.  
*/
await gapi.client.cse.list({ q: "q",  });