rallly/declarations/i18next.d.ts
2022-07-28 10:39:58 +01:00

15 lines
408 B
TypeScript

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