aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/@types/i18next.d.ts
blob: 62c42b7b7d3dd62431dd2c88140d37e05ea00d2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import "i18next";

import translation from "../lib/i18n/locales/en/translation.json";

declare module "i18next" {
  // Extend CustomTypeOptions
  interface CustomTypeOptions {
    defaultNS: "translation";
    resources: {
      translation: typeof translation;
    };
  }
}