mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-14 03:29:30 +02:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
// types/i18next.d.ts
|
|
import 'i18next';
|
|
import { resources } from '../src/i18n';
|
|
|
|
declare module 'i18next' {
|
|
interface CustomTypeOptions {
|
|
resources: (typeof resources)['en'];
|
|
}
|
|
}
|