Interface AlertConfig

Represents the configuration for the alert bar displayed on top of the header widget.

interface AlertConfig {
    enabled: boolean;
    message: string;
    modifier: AlertModifier;
}

Properties

enabled: boolean

Shows or hides the alert bar on top of the header widget.

message: string

The content of the alert. This can be an HTML string.

modifier: AlertModifier

Changes the icon and color of the alert.