UNPKG

vuepress-theme-hope

Version:

A light vuepress theme with tons of features

8 lines (7 loc) 313 B
import type { SidebarGroupOptions, SidebarLinkOptions } from "../../shared/index.js"; export type SidebarLinkItem = SidebarLinkOptions; export interface SidebarGroupItem extends SidebarGroupOptions { prefix: string; children: SidebarItem[]; } export type SidebarItem = SidebarLinkItem | SidebarGroupItem;