mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-07 18:42:48 +00:00
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
import type { FormattersInitializer } from "typesafe-i18n";
|
|
import type { Locales, Formatters } from "./i18n-types";
|
|
|
|
export const initFormatters: FormattersInitializer<Locales, Formatters> = (
|
|
_locale: Locales,
|
|
) => {
|
|
const formatters: Formatters = {
|
|
// add your formatter functions here
|
|
};
|
|
|
|
return formatters;
|
|
};
|