Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / hooks / RelocalizeText.ts
blob9091486f71857064f153e55e308c9321059ec1eb
1 export type RelocalizeText = ({
2     getLocalizedText,
3     newLocaleCode,
4     relocalizeDateFormat,
5 }: {
6     getLocalizedText: () => string;
7     newLocaleCode?: string;
8     relocalizeDateFormat?: boolean;
9 }) => Promise<string>;