(input: Event)
| 21 | export type Event = z.infer<typeof eventSchema> |
| 22 | |
| 23 | export function trackEvent(input: Event): void { |
| 24 | const event = eventSchema.parse(input) |
| 25 | if (event) { |
| 26 | va.track(event.name, event.properties) |
| 27 | } |
| 28 | } |
no outgoing calls
no test coverage detected