mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-30 10:46:35 +02:00
16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import "i18next";
|
|
|
|
import type emails from "@rallly/emails/locales/emails.json";
|
|
|
|
import type app from "../public/locales/en/app.json";
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
defaultNS: "app";
|
|
returnNull: false;
|
|
resources: {
|
|
app: typeof app;
|
|
emails: typeof emails;
|
|
};
|
|
}
|
|
}
|