2023-03-21 05:27:31 +01:00
|
|
|
import type { TemplateProps, ClassKey } from "keycloakify/account/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 "../KcContext";
|
2023-03-20 05:14:25 +01:00
|
|
|
|
2024-06-09 04:43:18 +02:00
|
|
|
export type PageProps<NarrowedKcContext = KcContext> = {
|
|
|
|
Template: LazyOrNot<(props: TemplateProps<any>) => JSX.Element | null>;
|
2024-06-05 21:13:58 +02:00
|
|
|
kcContext: NarrowedKcContext;
|
2023-03-20 05:14:25 +01:00
|
|
|
doUseDefaultCss: boolean;
|
|
|
|
classes?: Partial<Record<ClassKey, string>>;
|
|
|
|
};
|