Skip to main content
Module

x/serpapi/src/config.ts

Scrape and parse search engine results using SerpApi.
Go to Latest
File
export type Config = { api_key: string | null; timeout: number;};export const config: Config = { api_key: null, timeout: 60000,};