2024-12-09 05:06:47 +01:00
|
|
|
import type { JSX } from "keycloakify/tools/JSX";
|
2024-06-09 11:20:45 +02:00
|
|
|
import { type TemplateProps, type ClassKey } from "keycloakify/account/TemplateProps";
|
2024-01-10 12:42:48 +01:00
|
|
|
import type { LazyOrNot } from "keycloakify/tools/LazyOrNot";
|
2023-03-20 05:14:25 +01:00
|
|
|
|
2024-06-09 11:20:45 +02:00
|
|
|
export type PageProps<NarrowedKcContext, I18n> = {
|
|
|
|
Template: LazyOrNot<(props: TemplateProps<any, any>) => JSX.Element | null>;
|
2024-06-05 21:13:58 +02:00
|
|
|
kcContext: NarrowedKcContext;
|
2024-06-09 11:20:45 +02:00
|
|
|
i18n: I18n;
|
2023-03-20 05:14:25 +01:00
|
|
|
doUseDefaultCss: boolean;
|
|
|
|
classes?: Partial<Record<ClassKey, string>>;
|
|
|
|
};
|