@usercentrics/cmp-browser-sdk
Version:
Usercentrics CMP Browser SDK
11 lines (10 loc) • 337 B
TypeScript
import { AMP_CONSENT_ACTION, AMP_CONSENT_STRING_TYPE, AMP_CONSENT_TYPE } from '../enums/enums';
export interface ConsentActions {
type: AMP_CONSENT_TYPE;
action: AMP_CONSENT_ACTION;
}
export interface ConsentMetadata {
consentStringType?: AMP_CONSENT_STRING_TYPE;
gdprApplies?: boolean;
additionalConsent?: string;
}