rallly/packages/emails/i18next.d.ts
2024-10-13 10:52:11 +01:00

15 lines
271 B
TypeScript

import "i18next";
import type emails from "./locales/en/emails.json";
interface I18nNamespaces {
emails: typeof emails;
}
declare module "i18next" {
interface CustomTypeOptions {
defaultNS: "emails";
resources: I18nNamespaces;
returnNull: false;
}
}