YesPlayMusic/packages/web/i18n/react-i18next.d.ts

12 lines
212 B
TypeScript
Raw Normal View History

2022-10-28 20:29:04 +08:00
import 'react-i18next'
import enUS from './locales/en-us.json'
declare module 'react-i18next' {
interface CustomTypeOptions {
resources: {
'en-US': typeof enUS
'zh-CN': typeof enUS
}
}
}