/** * Type for HamburgerMenu component * @module utils/hamburgerMenu */ import type { DropDownEntry } from "./dropDown"; /** * Interface for HamburgerMenu component properties * @property {Array} entries Array of {@link DropDownEntry} objects representing the menu items in the hamburger menu. * @example * */ interface HamburgerMenuProperty { entries: Array; } export type { HamburgerMenuProperty };