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