mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
|
|
export const i18n = {
|
||
|
|
defaultLocale: "en",
|
||
|
|
locales: ["en", "zh", "ja"],
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type Locale = (typeof i18n)["locales"][number]
|