@iabtechlabtcf/core
Version:
Ensures consistent encoding and decoding of TC Signals for the iab. Transparency and Consent Framework (TCF).
14 lines (13 loc) • 447 B
TypeScript
import { IntMap } from '../IntMap.js';
import { Feature } from './Feature.js';
import { Purpose } from './Purpose.js';
import { Stack } from './Stack.js';
import { DataCategory } from './DataCategory.js';
export interface Declarations {
purposes: IntMap<Purpose>;
specialPurposes: IntMap<Purpose>;
features: IntMap<Feature>;
specialFeatures: IntMap<Feature>;
stacks: IntMap<Stack>;
dataCategories?: IntMap<DataCategory>;
}