Skip to content

Instantly share code, notes, and snippets.

@cjkihl
Last active October 17, 2022 04:07
Show Gist options
  • Save cjkihl/b8c1cd60ba0642672661bd5954d3f621 to your computer and use it in GitHub Desktop.
Save cjkihl/b8c1cd60ba0642672661bd5954d3f621 to your computer and use it in GitHub Desktop.
NextJS GTM dataLayer.d.ts
export declare global {
interface Window {
dataLayer?: DataLayer.EventParameters[];
}
}
declare namespace DataLayer {
interface EventParameters {
[key: string]: any;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment