Skip to content

Interfaces

InitOptions

interface InitOptions {
  disableTracking?: boolean;
  euMode?: boolean;
  language?: string;
  location?: UserLocation;
  sandbox?: true;
}

UserLocation

interface UserLocation {
  country: string;
  region?: string;
  city?: string;
}

ServiceConsent

interface ServiceConsent {
  id: string;
  consent: boolean;
}

LanguagesData

interface LanguagesData {
    languages: Languages;
}

Language

interface Language {
    name: string;
    en?: string;
    rtl?: true;
}