mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-03 04:06:06 +02:00
15 lines
266 B
TypeScript
15 lines
266 B
TypeScript
import "i18next";
|
|
|
|
import emails from "./locales/en/emails.json";
|
|
|
|
interface I18nNamespaces {
|
|
emails: typeof emails;
|
|
}
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
defaultNS: "emails";
|
|
resources: I18nNamespaces;
|
|
returnNull: false;
|
|
}
|
|
}
|