Enabling shorter import paths [automatic]

This commit is contained in:
ts_ci
2021-03-08 02:04:04 +00:00
parent 66a218c2ec
commit 5fdfb34e17
136 changed files with 23015 additions and 223 deletions

17
lib/components/Template.d.ts vendored Normal file
View File

@ -0,0 +1,17 @@
import type { ReactNode } from "react";
import type { KcContext } from "../KcContext";
import type { KcTemplateProps } from "./KcProps";
export declare type TemplateProps = {
displayInfo?: boolean;
displayMessage?: boolean;
displayRequiredFields?: boolean;
displayWide?: boolean;
showAnotherWayIfPresent?: boolean;
headerNode: ReactNode;
showUsernameNode?: ReactNode;
formNode: ReactNode;
infoNode?: ReactNode;
} & {
kcContext: KcContext.Template;
} & KcTemplateProps;
export declare const Template: import("react").MemoExoticComponent<(props: TemplateProps) => JSX.Element | null>;