mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|