Files
website/lib/umami.ts
2025-09-12 23:20:36 +02:00

10 lines
209 B
TypeScript

// file: types/umami.d.ts
declare global {
interface Window {
umami?: {
track: (eventName: string, eventData?: Record<string, any>) => void;
};
}
}
export {}; // This makes the file a module