mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-02-28 20:56:37 +00:00
5 lines
153 B
TypeScript
5 lines
153 B
TypeScript
/** Sends an event to Google Analytics. */
|
|
export function analyticsEvent(action: string, data?: any) {
|
|
(window as any).gtag('event', action, data);
|
|
}
|