import { Primitive } from '../types/primitive.type'; export interface IGoogleAnalyticsServiceEvent { category?: string; label?: string; value?: number; interaction?: boolean; options?: Record; } export interface IGoogleAnalyticsServicePageView { title?: string; location?: string; options?: Record; } export interface IGoogleAnalyticsServiceAppView { appId?: string; appVersion?: string; installerId?: string; }