Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion packages/third-parties/src/types/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ declare global {
}
}

type JSONValue =
| string
| number
| boolean
| JSONValue[]
| { [key: string]: JSONValue }

export type GTMParams = {
gtmId: string
dataLayer?: string[]
dataLayer?: { [key: string]: JSONValue }
dataLayerName?: string
auth?: string
preview?: string
Expand Down
Loading