Files
EMS-ESP32/interface/src/i18n/formatters.ts
2023-04-29 15:35:54 +02:00

11 lines
306 B
TypeScript

import type { Locales, Formatters } from './i18n-types';
import type { FormattersInitializer } from 'typesafe-i18n';
export const initFormatters: FormattersInitializer<Locales, Formatters> = () => {
const formatters: Formatters = {
// add your formatter functions here
};
return formatters;
};