mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { enableAutoTrack, makeTracker } from './auto';
|
|
import { mixpanel } from './mixpanel';
|
|
import { sentry } from './sentry';
|
|
|
|
export const track = makeTracker((event, props) => {
|
|
mixpanel.track(event, props);
|
|
});
|
|
|
|
export { enableAutoTrack, mixpanel, sentry };
|
|
export default track;
|