UNPKG

@trlogic/tracker-web

Version:
20 lines (19 loc) 543 B
import TrackerFilterJsonModel from "../filter/TrackerFilterJsonModel"; import { TrackerTriggerTypeWeb } from "../TrackerTriggerType"; interface TrackerTrigger { name: string; type: TrackerTriggerTypeWeb; filters: TrackerFilterJsonModel[]; option: ClickOption | ScrollOptions | CustomEventOption; } export interface ClickOption { justLinks: boolean; } export interface ScrollOptions { horizontal: boolean; vertical: boolean; } export interface CustomEventOption { event: string; } export default TrackerTrigger;