UNPKG

@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).

17 lines (16 loc) 410 B
import { CommandCallback } from './command/CommandCallback.js'; interface EventItem { callback: CommandCallback; param?: any; next?: CommandCallback; } export declare class EventListenerQueue { private eventQueue; private queueNumber; add(eventItems: EventItem): number; remove(listenerId: number): boolean; exec(): void; clear(): void; get size(): number; } export {};