mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
import type { FormattersInitializer } from 'typesafe-i18n';
|
|
|
|
import type { Formatters, Locales } from './i18n-types';
|
|
|
|
export const initFormatters: FormattersInitializer<Locales, Formatters> = () => {
|
|
const formatters: Formatters = {
|
|
// add your formatter functions here
|
|
};
|
|
|
|
return formatters;
|
|
};
|