(eventName: string, params?: Record<string, string | number | boolean>)
| 1 | import { sendGAEvent } from "@next/third-parties/google"; |
| 2 | |
| 3 | export function trackEvent(eventName: string, params?: Record<string, string | number | boolean>) { |
| 4 | sendGAEvent("event", eventName, params ?? {}); |
| 5 | } |
no outgoing calls
no test coverage detected