mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
e537b5d8e1
This reverts commite0e70c9222
, reversing changes made to0b184913b9
.
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;
|
|
}
|
|
}
|