UNPKG

@ninetailed/experience.js-plugin-insights

Version:

Ninetailed SDK plugin for Ninetailed Insights

7 lines (6 loc) 311 B
import type { ComponentClickEvent, ComponentHoverEvent, ComponentViewEvent, Profile } from '@ninetailed/experience.js-shared'; export type ComponentEvent = ComponentViewEvent | ComponentClickEvent | ComponentHoverEvent; export type ComponentEventBatch = { profile: Profile; events: ComponentEvent[]; };