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