Files
web/types/components/tracking.ts
2024-02-14 11:44:22 +01:00

24 lines
419 B
TypeScript

export type WindowWithDataLayer = Window & {
datalayer: { [key: string]: any }
}
export type TrackingProps = {
pageData: {
pageId: string
createdDate: string
publishedDate: string
pageName: string
pageType: string
}
}
export type TrackingData = {
pathName: string
queryString: string
pageId: string
pageName: string
pageType: string
publishedDate: string
createdDate: string
}