feat(BOOK-436): Added manage cookie bot dynamic content to content pages
Approved-by: Linus Flood
This commit is contained in:
10
apps/scandic-web/types/window.d.ts
vendored
10
apps/scandic-web/types/window.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
interface Window {
|
||||
dataLayer: {
|
||||
[key: string]: any
|
||||
[key: string]: unknown
|
||||
push: (...args: unknown) => void
|
||||
}
|
||||
adobeDataLayer: {
|
||||
@@ -10,12 +10,12 @@ interface Window {
|
||||
adobe: {
|
||||
OptInCategories: { ANALYTICS: string }
|
||||
optIn: {
|
||||
approve: (s: string, b: boolean) => {}
|
||||
deny: (s: string, b: boolean) => {}
|
||||
complete: () => {}
|
||||
approve: (s: string, b: boolean) => void
|
||||
deny: (s: string, b: boolean) => void
|
||||
complete: () => void
|
||||
}
|
||||
}
|
||||
Cookiebot: { changed: boolean; consented: boolean }
|
||||
Cookiebot: { changed: boolean; consented: boolean; show: () => void }
|
||||
ApplePaySession: (() => void) | undefined
|
||||
kindlyChat: {
|
||||
showBubble: () => void
|
||||
|
||||
Reference in New Issue
Block a user