UNPKG

guess-ga

Version:

Fetch structured data from Google Analytics

8 lines (7 loc) 324 B
import { Period } from '../../common/interfaces'; export declare type GaResult = any; export interface ClientResult { error?: GaResult; report?: any; } export declare function getClient(jwtClient: any, pageSize: number, viewId: string, period: Period, expression: string): () => AsyncIterableIterator<ClientResult>;