13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
|
import "react-i18next";
|
||
|
|
||
|
import translation from "../public/locales/en/translation.json";
|
||
|
|
||
|
declare module "react-i18next" {
|
||
|
interface CustomTypeOptions {
|
||
|
defaultNS: "translation";
|
||
|
resources: {
|
||
|
translation: typeof translation;
|
||
|
};
|
||
|
}
|
||
|
}
|