(eventName: string, properties?: Record<string, string | number>)
| 39 | } |
| 40 | |
| 41 | export function trackAppEvent(eventName: string, properties?: Record<string, string | number>): void { |
| 42 | getService() |
| 43 | ?.track(eventName, properties) |
| 44 | .catch((e) => console.error(`[Analytics] Failed to report event ${eventName}:`, e)) |
| 45 | } |
nothing calls this directly
no test coverage detected