11 lines
441 B
TypeScript
Raw Normal View History

2023-03-21 05:27:31 +01:00
import type { TemplateProps, ClassKey } from "keycloakify/account/TemplateProps";
import type { LazyOrNot } from "keycloakify/tools/LazyOrNot";
2024-06-05 22:48:13 +02:00
import type { KcContext } from "../KcContext";
export type PageProps<NarrowedKcContext = KcContext> = {
Template: LazyOrNot<(props: TemplateProps<any>) => JSX.Element | null>;
kcContext: NarrowedKcContext;
doUseDefaultCss: boolean;
classes?: Partial<Record<ClassKey, string>>;
};