@mntm/stats
Version:
A package for integrating analytics tools
9 lines (8 loc) • 310 B
TypeScript
import type { Provider } from '../types.js';
/**
* Implements VK Statistics
*
* @param api Implementation of VK API
* @see Implementation with VKWebAppCallAPIMethod and valid token
*/
export declare const createProviderVK: (api: (method: string, params: Record<string, any>) => Promise<any>) => Provider;