UNPKG

@mntm/stats

Version:

A package for integrating analytics tools

8 lines (7 loc) 270 B
import type { Params, Provider } from './types.js'; /** * Chains all providers into one * * @param providers All implemented providers */ export declare const createSend: (providers: Provider[]) => (event: string, params?: Params | undefined) => Promise<boolean[]>;