blob: b1fd5a3584c5f968e1318dc588d7b093ad5c3276 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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;
};
|