10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import 'react-i18next';
|
|
import type { resources } from './setup';
|
|
|
|
declare module 'react-i18next' {
|
|
interface CustomTypeOptions {
|
|
defaultNS: 'common';
|
|
resources: typeof resources['en'];
|
|
}
|
|
}
|