11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import 'i18next';
|
|
import type en from './locales/en';
|
|
|
|
declare module 'i18next' {
|
|
interface CustomTypeOptions {
|
|
defaultNS: 'translation';
|
|
resources: {
|
|
translation: typeof en;
|
|
};
|
|
}
|
|
}
|