UNPKG

@iabtechlabtcf/core

Version:

Ensures consistent encoding and decoding of TC Signals for the iab. Transparency and Consent Framework (TCF).

16 lines (15 loc) 302 B
/** * class for General GVL Errors * * @extends {Error} */ declare class GVLError extends Error { /** * constructor - constructs a GVLError * * @param {string} msg - Error message to display * @return {undefined} */ constructor(msg: string); } export { GVLError };