dialog hook 정보

interface UstraDialogHookInfo {
    closeCallback?: Function;
    displayTime?: number;
    message: string;
    title?: string;
    type: "alert" | "confirm" | "toast";
}

Hierarchy

  • Record<string, any>
    • UstraDialogHookInfo

Properties

closeCallback?: Function

close callback function

displayTime?: number

display time

message: string

노출 메시지

title?: string

제목

type: "alert" | "confirm" | "toast"

유형

  • alert
  • confirm
  • toast

Generated using TypeDoc