import { DialogResult, MsgBoxIcon, TextColor, MsgBoxButtons } from "./msgbox.helper"; import { ModalOption } from "../../helpers/modal-option"; export interface IMsgBoxEventArgs { cancel: boolean; result: DialogResult; } export interface IMsgBoxOption { title?: string; message?: string; icon?: MsgBoxIcon; iconColor?: TextColor; buttons?: MsgBoxButtons; callback?: Function; modalOption?: ModalOption; }