@iabtechlabtcf/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).
12 lines (11 loc) • 461 B
TypeScript
import { CommandCallback } from './CommandCallback.js';
export declare abstract class Command {
protected listenerId: number;
protected callback: CommandCallback;
protected next: CommandCallback;
protected param: any;
protected success: boolean;
constructor(callback: CommandCallback, param?: any, listenerId?: number, next?: CommandCallback);
protected invokeCallback(response: any): void;
protected abstract respond(): void;
}