Prevent i18next from barking

https://github.com/i18next/i18next/pull/1865
This commit is contained in:
xmflsct 2022-11-17 20:09:07 +01:00
parent 1b2e651117
commit 94c4c7c942
1 changed files with 8 additions and 0 deletions

8
src/@types/i18next.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
import 'i18next'
declare module 'i18next' {
interface CustomTypeOptions {
defaultNS: 'common',
returnNull: false
}
}