mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-01 16:50:12 +08:00
16 lines
392 B
TypeScript
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;
|
|
};
|
|
}
|
|
}
|