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