redux-beacon-matomo-tag-manager
Version:
Matomo (formerly Piwik) tag manager integration for redux-beacon.
9 lines (8 loc) • 373 B
TypeScript
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;