@usercentrics/cmp-browser-sdk
Version:
Usercentrics CMP Browser SDK
11 lines (10 loc) • 610 B
TypeScript
import { CcpaButtonLabels, CcpaFirstLayerLabels, CcpaLabels, CcpaSecondLayerLabels } from './interfaces';
import { DpsJsonResponse, LegacyHashService, LegacySettings, Translations } from '../../Api/interfaces';
import CommonLabels from './Common/CommonLabels';
declare class Ccpa extends CommonLabels implements CcpaLabels {
buttons: CcpaButtonLabels;
firstLayer: CcpaFirstLayerLabels;
secondLayer: CcpaSecondLayerLabels;
constructor(legacySettings: LegacySettings, dpsJson: DpsJsonResponse, translations?: Translations | null, aggregatedServices?: LegacyHashService[]);
}
export default Ccpa;