Files
honey-fe/src/i18n/index.d.ts

10 lines
198 B
TypeScript
Raw Normal View History

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