UNPKG

web3-research-mcp

Version:

Deep Research for crypto - free & fully local

20 lines (19 loc) 613 B
declare module "duck-duck-scrape" { interface SearchResult { title: string; url: string; description: string; [key: string]: any; } interface SearchResponse { noResults: boolean; vqd?: string; results: SearchResult[]; [key: string]: any; } function search(query: string, options?: any): Promise<SearchResponse>; function news(query: string, options?: any): Promise<SearchResponse>; function images(query: string, options?: any): Promise<any>; function videos(query: string, options?: any): Promise<any>; } export {};