UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

16 lines (15 loc) 722 B
/// <reference types="react" /> import type { JSX } from "../../tools/JSX"; import type { LazyOrNot } from "../../tools/LazyOrNot"; import type { UserProfileFormFieldsProps } from "../../login/UserProfileFormFieldsProps"; import type { PageProps } from "../../login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; type UpdateEmailProps = PageProps<Extract<KcContext, { pageId: "update-email.ftl"; }>, I18n> & { UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => React.ReactElement<any, any>>; doMakeUserConfirmPassword: boolean; }; export default function UpdateEmail(props: UpdateEmailProps): React.ReactElement<any, any>; export {};