vuepress-theme-hope
Version:
A light vuepress theme with tons of features
8 lines • 350 B
TypeScript
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;
//# sourceMappingURL=sidebar.d.ts.map