UNPKG

@iabtechlabtcf/core

Version:

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

14 lines (13 loc) 279 B
/** * IntMap - A map of abstract type (defined by implementer) that is keyed by an * integer string id. Example `IntMap<number>`: * ``` * const myIntMapOfNumbers: IntMap<number> = { * "1":2, * "3":4, * }; * ``` */ export interface IntMap<T> { [id: string]: T; }