Skip to content

Instantly share code, notes, and snippets.

@tiagogm
Last active June 15, 2019 09:46
Show Gist options
  • Save tiagogm/00c66132427c9e5b935dec73c898abbf to your computer and use it in GitHub Desktop.
Save tiagogm/00c66132427c9e5b935dec73c898abbf to your computer and use it in GitHub Desktop.
const pushEvent = (event: IEvent) = {
if (typeof window === 'undefined' || !window.dataLayer) {
return;
}
window.dataLayer.push( event: event.name, ...event.properties });
}
export const GTM = {
pushEvent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment