Files
2025-07-13 15:39:12 +01:00

10 lines
188 B
TypeScript

// types/i18next.d.ts
import 'i18next';
import { resources } from '../src/i18n';
declare module 'i18next' {
interface CustomTypeOptions {
resources: (typeof resources)['en'];
}
}