navbar.d.ts 296 Bytes EditWeb IDE 1 2 3 4 5 6 import type { HopeNavBarConfigItem } from "../types"; export interface NavBarConfigItem extends HopeNavBarConfigItem { type: "link" | "links"; items: NavBarConfigItem[]; } export declare const getNavLinkItem: (navbarLink: HopeNavBarConfigItem, beforeprefix?: string) => NavBarConfigItem;