locale.ts 221 B

12345678
  1. export const Locale = {
  2. 'en-US': 'en-US',
  3. 'ja-JP': 'ja-JP',
  4. 'zh-CN': 'zh-CN',
  5. 'fr-FR': 'fr-FR',
  6. } as const;
  7. export const AllLocale = Object.values(Locale);
  8. export type Locale = typeof Locale[keyof typeof Locale];