RenaiApp/src/shared/translation/translation.d.ts

11 lines
196 B
TypeScript

/**
* @see https://unicode-org.github.io/icu/userguide/format_parse/messages/
*/
type TranslationData = {
[x: string]: TranslationData | string;
};
declare const enum Locale {
EN = 'en',
}