UNPKG

redux-beacon-matomo-tag-manager

Version:
9 lines (8 loc) 373 B
import { Target } from 'redux-beacon'; /** Options for the redux-beacon Matomo tag manager */ export interface IMatomoTagManagerOptions { /** The dataLayer used for pushing events and variables. By default '_mtm' */ dataLayerName?: string; } declare const MatomoTagManager: ({ dataLayerName }?: IMatomoTagManagerOptions) => Target; export default MatomoTagManager;