IAlertResult
Definition
interface IAlertResult {
show: (content: string | IBaseAlertProps) => Promise<any>,
confirm: (content: string | IConfirmAlertProps) => Promise<boolean>
form: (content: IFormAlertProps) => Promise<any>
info: (content: string | IBaseAlertProps) => Promise<any>
success: (content: string | IBaseAlertProps) => Promise<any>
warning: (content: string | IBaseAlertProps) => Promise<any>
error: (content: string | IBaseAlertProps) => Promise<any>
}Usage
import { IAlertResult } from 'uxp/components';Related Types
Last updated