interface Message {
    delay: number;
    msg: string;
    popup: boolean;
    target: string | Element | JQuery<HTMLElement>;
    type: string;
}

Properties

delay: number

The delay in milliseconds the message is shown

msg: string

The message text to display.

popup: boolean

Whether the message should be displayed inside a popup window or not.

target: string | Element | JQuery<HTMLElement>

The target element (or selector to get the element) in which to display the message. If not defined, then the default target of the notification service is used.

type: string

The type of message.