Interface ApplicationMenuLink

Represents an application link displayed in the second section of the menu, under the main links.

interface ApplicationMenuLink {
    href: string;
    icon?: "e-desk" | "e-desk-lock";
    label: string;
    target?: string;
}

Properties

Properties

href: string

The URL the link navigates to when clicked.

icon?: "e-desk" | "e-desk-lock"

The icon to display next to the link. Possible values are:

  • 'e-desk': Displays the e-desk icon.
  • 'e-desk-lock': Displays the e-desk icon with a lock symbol on top.
  • undefined (not provided): No icon will be displayed.
label: string

The text that will be shown for the link.

target?: string

Specifies where to open the linked document, similar to the HTML target attribute. For example, "_blank" opens the link in a new tab.