Interface Message

interface Message {
    actions?: string[];
    options?: MessageOptions;
    source?: string;
    text: string;
    type?: MessageType;
}

Hierarchy (view full)

Properties

actions?: string[]

Actions offered to the user in the context of the message.

options?: MessageOptions

Additional options.

source?: string
text: string

Message text.

Type of the message, i.e. error, warning, info, etc.