dumi-theme-antd-style
Version:
dumi-theme-antd-style 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验
23 lines (22 loc) • 483 B
TypeScript
export type { HighlighterSyntaxTheme } from '../components/Highlighter';
export * from './apiHeader';
export * from './config';
export * from './hero';
/**
* @title 锚点项
*/
export interface AnchorItem {
/**
* @title 锚点项 ID
*/
id: string;
/**
* @title 锚点项标题
*/
title: string;
/**
* @title 子锚点项
* @description 若存在子锚点项,则该锚点项为父锚点项
*/
children?: AnchorItem[];
}