@adv-ui/boros-tcf
Version:
Adevinta GDPR - Transparency and Consent Framework - API
26 lines (19 loc) • 567 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ConsentRepository = void 0;
/**
* @interface
*/
var ConsentRepository = /*#__PURE__*/function () {
function ConsentRepository() {}
var _proto = ConsentRepository.prototype;
_proto.loadUserConsent = function loadUserConsent() {};
_proto.saveUserConsent = function saveUserConsent(_ref) {
var encodedConsent = _ref.encodedConsent,
decodedConsent = _ref.decodedConsent;
};
return ConsentRepository;
}();
exports.ConsentRepository = ConsentRepository;