googlethis-augmented
Version:
A fork of googlethis to get specific data for different needs.
26 lines (25 loc) • 576 B
TypeScript
export = OrganicResults;
declare class OrganicResults {
/**
* @returns {{
* title: string;
* description: string;
* url: string;
* is_sponsored: boolean;
* favicons: {
* high_res: string;
* low_res: string;
* }
* }[]}
*/
static parse($: any, parse_ads?: boolean, is_mobile?: boolean): {
title: string;
description: string;
url: string;
is_sponsored: boolean;
favicons: {
high_res: string;
low_res: string;
};
}[];
}