mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
|
import 'i18next';
|
||
|
|
||
|
declare module 'i18next' {
|
||
|
// Extend CustomTypeOptions
|
||
|
interface CustomTypeOptions {
|
||
|
// Setting Default Namespace As English
|
||
|
defaultNS: 'en';
|
||
|
// Custom Types For Resources
|
||
|
// Never Return Null
|
||
|
returnNull: false;
|
||
|
}
|
||
|
}
|