UNPKG

serpapi

Version:

Scrape and parse search engine results using SerpApi.

16 lines (15 loc) 371 B
export type EngineParameters = Record<string, any>; export type BaseResponse = Record<string, any>; export type GetBySearchIdParameters = { api_key?: string; timeout?: number; }; export type AccountApiParameters = { api_key?: string; timeout?: number; }; export type LocationsApiParameters = { q?: string; limit?: number; timeout?: number; };