Files
honey-fe/src/i18next.d.ts

10 lines
195 B
TypeScript
Raw Normal View History

2026-03-10 03:05:06 +02:00
import "i18next";
import type { resources } from "../public/locales/en.d.ts";
declare module "i18next" {
interface CustomTypeOptions {
resources: { translation: typeof resources };
}
}