Represents a single menu item in the mobile navigation.

interface MobileMenuItem {
    hasChildren: boolean;
    id: string | number;
    label: string;
    langcode: string;
    path: string;
}

Hierarchy (view full)

Properties

hasChildren: boolean

Indicator noting this menu item has children and therefore should open a new level of navigation. *

id: string | number

The ID of the menu item *

label: string

Text label used for display *

langcode: string

The 2 character language code. *

path: string

URL to the navigation item *

Generated using TypeDoc