Type alias MobileMenuLinkClickEventDetails

MobileMenuLinkClickEventDetails: {
    action: "Back" | "Child" | null;
    data: MobileMenuData | null;
    index: number | null;
    label: string | null;
}

Type declaration

  • action: "Back" | "Child" | null

    Action that triggered a link click.

  • data: MobileMenuData | null

    Menu data of link clicked.

  • index: number | null

    Number in list. Null if Back link clicked.

  • label: string | null

    Text content of item clicked.

Generated using TypeDoc