Files
Open-Assistant/website/types/i18next.d.ts
T
2023-01-22 23:28:27 +07:00

16 lines
392 B
TypeScript

import "i18next";
import type common from "../public/locales/en/common.json";
import type index from "../public/locales/en/index.json";
import type leaderboard from "../public/locales/en/leaderboard.json";
declare module "i18next" {
interface CustomTypeOptions {
resources: {
common: typeof common;
index: typeof index;
leaderboard: typeof leaderboard;
};
}
}