mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 17:04:56 +05:30
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
// types/i18next.d.ts
|
|
import 'i18next';
|
|
import { resources } from '../src/i18n';
|
|
|
|
declare module 'i18next' {
|
|
interface CustomTypeOptions {
|
|
resources: (typeof resources)['en'];
|
|
}
|
|
}
|