Fix build

This commit is contained in:
Joseph Garrone
2024-06-05 22:48:13 +02:00
parent 4c423900d4
commit d9345396e8
6 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
import type { TemplateProps, ClassKey } from "keycloakify/account/TemplateProps";
import type { LazyOrNot } from "keycloakify/tools/LazyOrNot";
import type { I18n } from "../i18n";
import type { KcContext } from "../kcContext";
import type { KcContext } from "../KcContext";
export type PageProps<NarrowedKcContext = KcContext, I18nExtended extends I18n = I18n> = {
Template: LazyOrNot<(props: TemplateProps<any, any>) => JSX.Element | null>;