@didomi/iabtcf-cmpapi
Version:
Ensures other in-page digital marketing technologies have access to CMP transparency and consent information for the iab. Transparency and Consent Framework (TCF).
25 lines (24 loc) • 584 B
TypeScript
/**
* An enum representing all the possible statuses for the displayStatus
* returned through the CMP API
*
* @readonly
* @enum {string}
*/
export declare enum DisplayStatus {
/**
* User interface is currently displayed
* @type {string}
*/
VISIBLE = "visible",
/**
* User interface is not yet or no longer displayed
* @type {string}
*/
HIDDEN = "hidden",
/**
* User interface will not show (e.g. GDPR does not apply or TC data is current and does not need renewal)
* @type {string}
*/
DISABLED = "disabled"
}