feat: add Umami analytics helper and window type declaration

This commit is contained in:
2026-03-25 06:41:59 -04:00
parent 37921469d5
commit 754a378782
2 changed files with 26 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
interface Window {
umami?: {
track: (eventName: string, properties?: Record<string, string | number | boolean>) => void;
};
}