mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-12-28 07:54:13 +08:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { Flatten } from '@solid-primitives/i18n'
|
|
import { LANG } from '~/constants'
|
|
import en from './en'
|
|
import zh from './zh'
|
|
|
|
export type Dict = Flatten<typeof en>
|
|
|
|
export default {
|
|
[LANG.EN]: en,
|
|
[LANG.ZH]: zh,
|
|
}
|