2022-10-31 12:47:18 +00:00
|
|
|
// https://www.i18next.com/overview/typescript
|
|
|
|
import "i18next";
|
2022-10-10 10:14:19 +00:00
|
|
|
|
|
|
|
import translation from "../public/locales/en/translation.json";
|
|
|
|
|
2022-10-31 12:47:18 +00:00
|
|
|
declare module "i18next" {
|
2022-10-10 10:14:19 +00:00
|
|
|
interface CustomTypeOptions {
|
|
|
|
defaultNS: "translation";
|
|
|
|
resources: {
|
|
|
|
translation: typeof translation;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|