mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-04 08:28:43 +00:00
c914eeb7b3
Refs #17
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
import 'i18next';
|
|
import type { defaultNS, resources } from './i18n/resources';
|
|
|
|
declare module 'i18next' {
|
|
interface CustomTypeOptions {
|
|
defaultNS: typeof defaultNS;
|
|
enableSelector: 'optimize';
|
|
resources: typeof resources['en'];
|
|
returnNull: false;
|
|
}
|
|
}
|