rallly/apps/web/declarations/i18next.d.ts
2023-04-25 17:28:57 +01:00

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;
}
}