TypeScript typings for Custom Search API v1
Searches over a website or collection of websites
For detailed description please check documentation.
Installing
Install typings for Custom Search API:
npm install @types/gapi.client.customsearch-v1 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load(
'https://customsearch.googleapis.com/$discovery/rest?version=v1',
() => {
},
);
gapi.client.load('customsearch', 'v1', () => {
});
After that you can use Custom Search API resources:
await gapi.client.search.cse.list({});