File size: 897 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
/**
* Re-exports
*/
export {
recordEvent,
recordGoogleEvent,
recordTracksEvent,
recordCustomFacebookConversionEvent,
recordCustomAdWordsRemarketingEvent,
recordPageView,
recordGooglePageView,
} from './record';
export { recordTracksEventWithClientId, recordPageViewWithClientId } from './record-with-client-id';
export { withAnalytics } from './with-analytics';
export { enhanceWithGlobalSiteViewEnabled } from './enhance-with-global-site-view-enabled';
export { enhanceWithUserIsDevAccount } from './enhance-with-user-is-dev-account';
export { enhanceWithSiteMainProduct } from './enhance-with-site-main-product';
export { enhanceWithSiteType } from './enhance-with-site-type';
export { composeAnalytics } from './compose-analytics';
export { bumpStat } from './bump-stat';
export { loadTrackingTool } from './load-tracking-tool';
export { setTracksOptOut } from './set-tracks-opt-out';
|