@almacareer/cookie-consent-manager
Version:
Cookie Consent Manager mainly for Alma Career products
11 lines (10 loc) • 459 B
TypeScript
import { CreateCookieTable, SupportedLanguage } from './types';
export declare const PREDEFINED_COOKIE_TABLE_URL = "https://consents.almacareer.tech/acl-lda/categorization.json";
export interface ApiCookieEntry {
pattern: string;
name: string;
provider: string;
suggested_category: string;
description: Record<SupportedLanguage, string>;
}
export declare const createCookieTable: (currentLanguage: SupportedLanguage) => CreateCookieTable;