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