keycloak-scim/apps/admin-ui/src/i18next.d.ts

12 lines
396 B
TypeScript
Raw Normal View History

// https://www.i18next.com/overview/typescript
import "i18next";
declare module "i18next" {
interface CustomTypeOptions {
2023-02-13 07:18:16 +00:00
// TODO: These flags 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 defaults produce is just too much.
returnNull: false;
2023-02-13 07:18:16 +00:00
allowObjectInHTMLChildren: true;
}
}