export interface IMatomoOptions { /** * Full path to `matomo.js` script. This will be used as `src` for the dynamically added script tag. */ scriptLocation: string; /** * Tracker URL where to send tracking information. This is full hostname that would typically end with `matomo.php` */ trackerUrl: string; /** * User ID to send to matomo. */ userId: string; /** * Site ID to send to matomo. */ siteId: number; /** * Custom variables to send. */ customVariables?: [string, string][]; }