@68publishers/cookie-consent
Version:
Cookie consent wrapper based on orestbida/cookieconsent with GTM integration.
22 lines (17 loc) • 409 B
JavaScript
export class Events {
static get ON_INIT() {
return 'init';
};
static get ON_CONSENT_FIRST_ACTION() {
return 'consent:first-action';
};
static get ON_CONSENT_ACCEPTED() {
return 'consent:accepted';
};
static get ON_CONSENT_CHANGED() {
return 'consent:changed';
};
static get ON_LOCALE_CHANGE() {
return 'locale:change';
};
}