Interface ProgressMessage

interface ProgressMessage {
    actions?: string[];
    options?: ProgressMessageOptions;
    source?: string;
    text: string;
    type?: Progress;
}

Hierarchy (view full)

Properties

actions?: string[]

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

Additional options.

source?: string
text: string

Message text.

type?: Progress

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