@almacareer/cookie-consent-manager
Version:
Cookie Consent Manager mainly for Alma Career products
12 lines (11 loc) • 358 B
TypeScript
import { Expiration, SupportedLanguage } from './types';
type ExpireFormat = (n: number) => string;
export type ExpireLocale = {
session: string;
year: ExpireFormat;
month: ExpireFormat;
day: ExpireFormat;
hour: ExpireFormat;
};
export declare const expireToString: (expire: Expiration, language: SupportedLanguage) => string;
export {};