Files
honey-fe/src/i18n/index.d.ts
Hewston Fox 5e9acffa09
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m40s
feat: add settings menu
2026-03-22 04:08:56 +02:00

12 lines
225 B
TypeScript

import "i18next";
import resources from "./resources";
declare module "i18next" {
interface CustomTypeOptions {
resources: { translation: typeof resources };
strictKeyChecks: true;
enableSelector: true;
}
}