mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
14 lines
212 B
TypeScript
14 lines
212 B
TypeScript
import zhCN from './zh-cn';
|
|
import en from './en';
|
|
import kmKH from './km-KH';
|
|
|
|
const locales = {
|
|
'zh-CN': zhCN,
|
|
en,
|
|
'km-KH': kmKH,
|
|
};
|
|
|
|
export type LocaleKey = keyof typeof locales;
|
|
|
|
export default locales;
|