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