13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
// https://www.i18next.com/overview/typescript
|
|
import "i18next";
|
|
|
|
import translation from "../public/locales/en/translation.json";
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
defaultNS: "translation";
|
|
resources: {
|
|
translation: typeof translation;
|
|
};
|
|
}
|
|
}
|