@honeypot-run/core
Version:
Patented threat analytics and fingerprinting library. Requires a honeypot.run account
4 lines (3 loc) • 431 B
TypeScript
import { AmplitudePluginConfig, IdentityType } from '../types';
import { BeforePlugin } from '@amplitude/analytics-types';
export declare const createAmplitudePlugin: (track: (eventType: string, eventProperties?: Record<string, any> | null) => Promise<any>, get: () => Promise<any>, identifyFn: (id: string, props?: Record<string, any>, type?: IdentityType) => Promise<void>, pluginConfig?: AmplitudePluginConfig) => BeforePlugin;