vuepress-plugin-typedoc
Version:
A VuePress plugin to build API documentation with TypeDoc.
12 lines (11 loc) • 310 B
TypeScript
import { TypeDocOptions } from 'typedoc';
export interface PluginOptions extends TypeDocOptions {
sidebar?: SidebarOptions;
hideBreadcrumbs?: boolean;
hideInPageTOC?: boolean;
}
export interface SidebarOptions {
fullNames: boolean;
parentCategory: string;
autoConfiguration: boolean;
}