1 2 3 4 5 6 7 8 9 10 11 12 13
import "i18next"; import translation from "../lib/i18n/locales/en/translation.json"; declare module "i18next" { // Extend CustomTypeOptions interface CustomTypeOptions { defaultNS: "translation"; resources: { translation: typeof translation; }; } }