/
githubmirror
/
Open-Assistant
Обзор
Документация
Войти
/
githubmirror
/
Open-Assistant
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/types/i18next.d.ts
31 строка
1 KB
AbdBarho
Add delete account page (#2523)
15 апр 2023, 09:31
Не верифицирован
15 апр 2023, 09:31
65b30d0
Код
Авторство
О чём код?
import type account from "public/locales/en/account.json"; import type chat from "public/locales/en/chat.json"; import type common from "public/locales/en/common.json"; import type dashboard from "public/locales/en/dashboard.json"; import type error from "public/locales/en/error.json"; import type index from "public/locales/en/index.json"; import type labelling from "public/locales/en/labelling.json"; import type leaderboard from "public/locales/en/leaderboard.json"; import type message from "public/locales/en/message.json"; import type stats from "public/locales/en/stats.json"; import type tasks from "public/locales/en/tasks.json"; import type tos from "public/locales/en/tos.json"; declare module "i18next" { interface CustomTypeOptions { resources: { account: typeof account; chat: typeof chat; common: typeof common; dashboard: typeof dashboard; error: typeof error; index: typeof index; labelling: typeof labelling; leaderboard: typeof leaderboard; message: typeof message; stats: typeof stats; tasks: typeof tasks; tos: typeof tos; }; } }