wangzhibo
2023-10-31 9da39812105bfc387db3b3b7c4896983e03d247d
1
2
3
4
5
6
7
8
9
10
11
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,
}