mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 18:26:34 +02:00
15 lines
408 B
TypeScript
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;
|
|
}
|
|
}
|