feat(SW-3322): Move base tracking to common package * Move base tracking to common package * Update lock file Approved-by: Joakim Jäderberg
16 lines
301 B
TypeScript
16 lines
301 B
TypeScript
import type { DataCache } from "./dataCache/Cache"
|
|
|
|
declare global {
|
|
var cacheClient: Promise<DataCache> | undefined
|
|
|
|
interface Window {
|
|
dataLayer: {
|
|
[key: string]: any
|
|
push: (...args: unknown) => void
|
|
}
|
|
adobeDataLayer: {
|
|
push: (...args: unknown) => void
|
|
}
|
|
}
|
|
}
|