rallly/declarations/i18next.d.ts
2022-07-21 12:12:35 +01:00

13 lines
327 B
TypeScript

import "react-i18next";
import app from "~/public/locales/en/app.json";
import common from "~/public/locales/en/common.json";
import homepage from "~/public/locales/en/homepage.json";
declare module "next-i18next" {
interface Resources {
homepage: typeof homepage;
app: typeof app;
common: typeof common;
}
}