UNPKG

search-engine-nodejs

Version:

A nodejs module to extract links from Aol, Ask, Baidu,Google, Bing and Yahoo

16 lines (15 loc) 466 B
declare class Google { optionsDefault: object; request(params: object): Promise<any[] | Error>; doRequest(options: object): Promise<any[]>; check(options: any): any; execRequest(options: any): Promise<any[]>; getLinks(body: string): Promise<any[]>; extractLinks(body: string): { links: any[]; }; pageOfResult(options: any): any; getUrl(options: any): string; } declare const _default: Google; export default _default;