highlight.run
Version:
Open source, fullstack monitoring. Capture frontend errors, record server side logs, and visualize what broke with session replay.
14 lines (13 loc) • 465 B
TypeScript
import type { Integration } from './client/types/types';
export declare const setupMixpanelIntegration: Integration;
export interface MixpanelPeopleAPI {
set: (metadata: {
[k: string]: any;
}) => void;
}
export interface MixpanelAPI {
init: (token: string, config?: any, name?: string) => void;
track: (event_name: string, properties?: any, options?: any) => void;
identify: (unique_id: string) => void;
people: MixpanelPeopleAPI;
}