keycloak-scim/js/apps/admin-ui/src/i18next.d.ts
Jon Koops 03b03f3ccd
Add missing translations for WebAuthN in Account Console (#26384)
Closes #26383

Signed-off-by: Jon Koops <jonkoops@gmail.com>
2024-01-22 16:04:22 +00:00

10 lines
371 B
TypeScript

// https://www.i18next.com/overview/typescript
import "i18next";
declare module "i18next" {
interface CustomTypeOptions {
// 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.
allowObjectInHTMLChildren: true;
}
}