Keycloak
1// https://www.i18next.com/overview/typescript
2import "i18next";
3
4declare module "i18next" {
5interface CustomTypeOptions {
6// TODO: This flag should be removed and code that errors out should be made functional.
7// This will have to be done incrementally as the amount of errors the default produces is just too much.
8allowObjectInHTMLChildren: true;
9}
10}
11