UNPKG

@mntm/stats

Version:

A package for integrating analytics tools

16 lines (15 loc) 357 B
import type { Provider } from '../types.js'; type YMInit = Partial<{ clickmap: boolean; trackLinks: boolean; accurateTrackBounce: boolean; webvisor: boolean; trackHash: boolean; }>; /** * Implements Yandex Metrika * * @param code XXXXXXX */ export declare const createProviderYM: (code: number, init: YMInit) => Provider; export {};