google-trends-api-client
Version:
An fully typed and easy to use client for the google trends api.
7 lines (6 loc) • 333 B
TypeScript
export interface CookiesCache {
set: (key: string, value: string) => Promise<void>;
get: (key: string) => Promise<string | undefined>;
}
export declare const COOKIES_CACHE_COOKIES_LIST_KEY = "google-trends-api-cookies-list.json";
export declare const COOKIES_CACHE_SESSION_TOKEN_KEY = "google-trends-api-session-token.json";