UNPKG

@mikezimm/npmfunctions

Version:
23 lines (22 loc) 669 B
/// <reference types="react" /> export interface IMyDialogProps { title: string; dialogMessage: string; showDialog: boolean; confirmButton: string; _confirmDialog: any; _closeDialog: any; } export declare function buildConfirmDialog(thisDialog: IMyDialogProps): JSX.Element; export interface IMyBigDialogProps { title: string; dialogMessage?: string; dialogElement?: any; showDialog: boolean; confirmButton: string; _confirmDialog: any; _closeDialog: any; minWidth?: number; maxWidth?: number; } export declare function buildConfirmDialogBig(thisDialog: IMyBigDialogProps): JSX.Element;