2023-01-26 14:46:23 +00:00
|
|
|
// https://www.i18next.com/overview/typescript
|
|
|
|
import "i18next";
|
|
|
|
|
|
|
|
declare module "i18next" {
|
|
|
|
interface CustomTypeOptions {
|
2024-01-22 16:04:22 +00:00
|
|
|
// TODO: This flag should be removed and code that errors out should be made functional.
|
|
|
|
// This will have to be done incrementally as the amount of errors the default produces is just too much.
|
2023-02-13 07:18:16 +00:00
|
|
|
allowObjectInHTMLChildren: true;
|
2023-01-26 14:46:23 +00:00
|
|
|
}
|
|
|
|
}
|