7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
export const i18n = {
|
|
defaultLocale: "tr",
|
|
locales: ["en", "tr"],
|
|
} as const;
|
|
|
|
export type Locale = (typeof i18n)["locales"][number];
|