mirror of
https://github.com/zhouhua/obsidian-waveform-player.git
synced 2026-07-22 05:41:57 +00:00
10 lines
322 B
TypeScript
10 lines
322 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;
|
|
};
|