UNPKG

google-trends-api-client

Version:

An fully typed and easy to use client for the google trends api.

12 lines (11 loc) 270 B
export interface ProxyConfig { username: string; password: string; host: string; port: string; } export declare const useProxyUrlIfPossible: ({ proxyConfig, }: { proxyConfig?: ProxyConfig | undefined; }) => Promise<{ proxyUrl: string; } | null>;