Interface MessageItem

Represents an action that is shown with a message.

interface MessageItem {
    isCloseAffordance?: boolean;
    title: string;
}

Properties

isCloseAffordance?: boolean

Indicates that the item should be triggered when the user cancels the dialog.

Note: this option is ignored for non-modal messages.

title: string

A message title.