Interface BrandingConfigHost

Represents the host configuration shown to the right of the umbrella in the header (if an umbrella is available).

interface BrandingConfigHost {
    href: string;
    label: string;
    logo: null | Image;
    target?: null | string;
}

Hierarchy (View Summary)

Properties

Properties

href: string

The URL that the link will navigate to when clicked.

label: string

The text that will be displayed for the link.

logo: null | Image

The logo image to display at the right of the host. Can be an Image object or null if no logo is to be displayed.

target?: null | string

Specifies where to open the linked document. Can be:

  • '_blank': Opens the link in a new tab or window.
  • '_self': Opens the link in the same frame as it was clicked (default).
  • '_parent': Opens the link in the parent frame.
  • '_top': Opens the link in the full body of the window.

This property is optional and can be null if no target is specified.