@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).
31 lines (30 loc) • 737 B
TypeScript
import { CmpStatus, DisplayStatus } from '../status/index.js';
import { Response } from './Response.js';
/**
* Ping response builder
*/
export declare class Ping extends Response {
/**
* true - CMP main script is loaded
* false - still running stub
*/
cmpLoaded: boolean;
/**
* see Ping Status Codes in following table
*/
cmpStatus: CmpStatus;
/**
* see Ping Status Codes in following table
*/
displayStatus: DisplayStatus;
/**
* version of the CMP API that is supported; e.g. “2”
*/
apiVersion: string;
/**
* Version of the GVL currently loaded by the CMP
* undefined if still the stub
*/
gvlVersion: number;
constructor();
}