UNPKG

@octopusdeploy/design-system-components

Version:
9 lines (8 loc) 252 B
import type { DesignSystemLinkHref } from "../../routing"; export interface MenuNodeItem { url: DesignSystemLinkHref; text: string; exact?: boolean; onClick: (label: string, href: string) => void; } export type MenuNode = MenuNodeItem;