UNPKG

serpapi

Version:

Scrape and parse search engine results using SerpApi.

9 lines (8 loc) 210 B
/// <reference types="node" /> import http from "http"; export type Config = { api_key: string | null; timeout: number; requestOptions?: http.RequestOptions; }; export declare const config: Config;