Kyoo/front/i18n-d.d.ts
2025-06-15 15:48:26 +02:00

10 lines
198 B
TypeScript

import "i18next";
import type en from "../public/translations/en.json";
declare module "i18next" {
interface CustomTypeOptions {
returnNull: false;
resources: { translation: typeof en };
}
}