@etsoo/react
Version:
TypeScript ReactJs UI Independent Framework
20 lines (19 loc) • 500 B
TypeScript
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>;
};