rallly/apps/landing/declarations/i18next.d.ts
Luke Vella c22b3abc4d
⬆️ v3.0.0 (#704)
2023-06-19 17:17:00 +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;
}
}