mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-03-01 13:55:25 +08:00
19 lines
411 B
TypeScript
19 lines
411 B
TypeScript
import { DeepPartial } from '../src/util/type_util';
|
|
import { en_GB } from './en_GB';
|
|
import { en_US } from './en_US';
|
|
import { ru_RU } from './ru_RU';
|
|
|
|
export type TTranslationMap = typeof en_GB.translations;
|
|
|
|
export type TLocaleDefinition = {
|
|
display_name: string,
|
|
language_code: string,
|
|
translations: DeepPartial<TTranslationMap>,
|
|
};
|
|
|
|
export const locales = [
|
|
en_GB,
|
|
en_US,
|
|
ru_RU,
|
|
];
|