diff --git a/src/@types/i18next.d.ts b/src/@types/i18next.d.ts deleted file mode 100644 index 939d2689..00000000 --- a/src/@types/i18next.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import resources from './resources'; - -declare module 'i18next' { - interface CustomTypeOptions { - resources: typeof resources; - } -} diff --git a/src/@types/resources.ts b/src/@types/resources.ts deleted file mode 100644 index 2bbd7f09..00000000 --- a/src/@types/resources.ts +++ /dev/null @@ -1,8 +0,0 @@ -import translation from '../locales/en/translation.json'; - -const resources = { - fallback: { translation }, - en: { translation } -} as const; - -export default resources;