@trustarc/react-cookie-consent-manager
Version:
React components to integrate TrustArc Cookie Consent Manager into React Frameworks
23 lines (22 loc) • 493 B
TypeScript
declare global {
interface Window {
trusteSettings?: {
URL_PRO: string,
URL_ADV: string
};
truste?: {
bn?: {
reopenBanner: () => void;
bannerMain: () => void;
};
eu?: {
icon: {
initialize: () => void;
};
irmLink?: Node;
irmLinkContainer: Node;
};
};
}
}
export {};