mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-01 18:21:52 +02:00
15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
import "i18next";
|
|
|
|
import app from "../public/locales/en/app.json";
|
|
|
|
interface I18nNamespaces {
|
|
app: typeof app;
|
|
}
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
defaultNS: "app";
|
|
resources: I18nNamespaces;
|
|
returnNull: false;
|
|
}
|
|
}
|