2023-03-21 05:27:31 +01:00
|
|
|
import { type TemplateProps, type ClassKey } from "keycloakify/login/TemplateProps";
|
2024-01-10 12:42:48 +01:00
|
|
|
import type { LazyOrNot } from "keycloakify/tools/LazyOrNot";
|
2024-06-05 22:48:13 +02:00
|
|
|
import type { KcContext } from "keycloakify/account/KcContext";
|
2023-03-17 20:40:29 +01:00
|
|
|
|
2024-06-08 17:55:05 +02:00
|
|
|
export type PageProps<NarowedKcContext = KcContext> = {
|
2024-01-10 12:42:48 +01:00
|
|
|
Template: LazyOrNot<(props: TemplateProps<any, any>) => JSX.Element | null>;
|
2024-02-12 13:27:07 +01:00
|
|
|
kcContext: NarowedKcContext;
|
2023-03-18 06:14:05 +01:00
|
|
|
doUseDefaultCss: boolean;
|
2023-03-21 05:27:31 +01:00
|
|
|
classes?: Partial<Record<ClassKey, string>>;
|
2023-03-17 20:40:29 +01:00
|
|
|
};
|