@trustarc/react-cookie-consent-manager
Version:
React components to integrate TrustArc Cookie Consent Manager into React Frameworks
12 lines (11 loc) • 413 B
TypeScript
/**
* Enum representing the different TrustArc banner IDs.
*
* @enum {string}
* @property {string} consent-banner - Represents the banner container ID for the "pro" version of TrustArc.
* @property {string} consent_blackbar - Represents the banner container ID for the "advanced" version of TrustArc.
*/
export declare enum TrustArcBannerID {
Pro = "consent-banner",
Advanced = "consent_blackbar"
}