mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import "react-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;
|
|
}
|
|
}
|