We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e9cbc commit d912dccCopy full SHA for d912dcc
packages/consent/consent-tools/src/types/wrapper.ts
@@ -136,6 +136,7 @@ export interface CDNSettings {
136
integrations: CDNSettingsIntegrations
137
remotePlugins?: CDNSettingsRemotePlugin[]
138
consentSettings?: CDNSettingsConsent
139
+ [key: string]: unknown
140
}
141
142
/**
@@ -144,7 +145,7 @@ export interface CDNSettings {
144
145
* { "Fullstory": {...}, "Braze Web Mode (Actions)": {...}}
146
*/
147
export interface CDNSettingsIntegrations {
- 'Segment.io': Record<string, unknown>
148
+ 'Segment.io': any // This key isn't actually used, but it's here to loosely match the expected type
149
[integrationName: string]: Record<string, unknown>
150
151
0 commit comments