2
0

lang.ts 183 B

1234567
  1. export const Lang = {
  2. en_US: 'en_US',
  3. ja_JP: 'ja_JP',
  4. zh_CN: 'zh_CN',
  5. } as const;
  6. export const AllLang = Object.values(Lang);
  7. export type Lang = typeof Lang[keyof typeof Lang];