UNPKG

@mntm/stats

Version:

A package for integrating analytics tools

11 lines (10 loc) 265 B
export type Params = Partial<{ category: string; label: string; screen: string; params: Record<string, unknown>; }>; export type ProviderSend = (event: string, params: Params) => Promise<boolean>; export type Provider = { send: ProviderSend; };