fix: stricter types for adobeDataLayer

This commit is contained in:
Michael Zetterberg
2024-07-30 15:44:33 +02:00
parent 4919252f08
commit 2c0116e67b

4
types/window.d.ts vendored
View File

@@ -1,6 +1,8 @@
interface Window {
datalayer: { [key: string]: any }
adobeDataLayer: any[]
adobeDataLayer: {
push: (...args: unknown) => void
}
_satellite: { cookie: { get: (s: string) => string } }
adobe: {
OptInCategories: { ANALYTICS: string }