mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-07 18:46:36 +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;
|