Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / Locale.ts
blob77f3ff2fe1971aa6cbd67dc945b3747a9d7e5425
1 import type { Locale } from 'date-fns';
2 import type { LocaleData } from 'ttag';
4 import type { SimpleMap } from './utils';
6 export type TtagLocaleMap = SimpleMap<() => Promise<LocaleData>>;
8 export interface DateFnsLocaleMap {
9     [key: string]: () => Promise<Locale>;