Files
suwayomi-material-you-webui/src/i18n/i18next.d.ts
T

10 lines
198 B
TypeScript
Raw Normal View History

2023-03-23 13:59:32 +01:00
import 'i18next';
import resources from 'i18n/translations';
declare module 'i18next' {
interface CustomTypeOptions {
returnNull: false;
resources: typeof resources.en;
}
}