MCPcopy Index your code
hub / github.com/SyntaxUI/syntaxui / trackEvent

Function trackEvent

types/events.ts:23–28  ·  view source on GitHub ↗
(input: Event)

Source from the content-addressed store, hash-verified

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

Callers 1

copyToClipboardWithMetaFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected