UNPKG

@etsoo/react

Version:

TypeScript ReactJs UI Independent Framework

26 lines (22 loc) 483 B
import { NotificationContent, NotificationReturn } from "@etsoo/notificationbase"; import { NotificationReactCallProps } from "../notifier/Notifier"; /** * Input dialog props */ export type InputDialogProps = NotificationReactCallProps & { /** * Title */ title: NotificationContent<React.ReactNode>; /** * Message */ message: NotificationContent<React.ReactNode>; /** * Callback */ callback: NotificationReturn<HTMLFormElement | undefined>; };