UNPKG

@aws-amplify/analytics

Version:

Analytics category of aws-amplify

11 lines (10 loc) 292 B
export interface PromiseHandlers { resolve: Function; reject: Function; } export interface AnalyticsProvider { configure(config: object): object; record(params: object, handlers?: PromiseHandlers): Promise<boolean>; getCategory(): string; getProviderName(): string; }