Files
gitlab-instance-0a899031_do…/lib/tracking-events.ts
2026-04-02 07:15:42 -05:00

17 lines
492 B
TypeScript

export const TRACKING_EVENTS = {
pageView: "page_view",
ctaClick: "cta_click",
downloadClick: "download_click",
unlockSubmit: "unlock_submit",
unlockResult: "unlock_result",
popupExpose: "popup_expose",
popupClick: "popup_click",
popupClose: "popup_close",
galleryOpen: "gallery_open",
galleryNavigate: "gallery_navigate",
abExpose: "ab_expose",
abClick: "ab_click",
} as const;
export type TrackingEventName = (typeof TRACKING_EVENTS)[keyof typeof TRACKING_EVENTS];