search-engine-nodejs
Version:
A nodejs module to extract links from Aol, Ask, Baidu,Google, Bing and Yahoo
16 lines (15 loc) • 460 B
TypeScript
declare class Aol {
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: Aol;
export default _default;