Kyoo/front/i18n-d.d.ts

10 lines
197 B
TypeScript

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