rallly/packages/emails/i18next.d.ts
2024-11-30 19:00:56 +00: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;
}
}