14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import { zhCN } from './zh-CN';
|
|
import { zhTW } from './zh-TW';
|
|
import { en } from './en';
|
|
|
|
export const supportTranslations = {
|
|
'zh-CN': zhCN,
|
|
'zh-TW': zhTW,
|
|
en: en,
|
|
};
|
|
|
|
export type SupportLanguage = keyof typeof supportTranslations;
|
|
export type SupportTranslation = typeof zhCN;
|
|
|