Last active
October 17, 2022 04:07
-
-
Save cjkihl/b8c1cd60ba0642672661bd5954d3f621 to your computer and use it in GitHub Desktop.
NextJS GTM dataLayer.d.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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