docusaurus-plugin-typedoc
Version:
A Docusaurus plugin to integrate TypeDoc ( + typedoc-plugin-markdown ) into a Docusaurus project.
16 lines (15 loc) • 331 B
TypeScript
/**
* Describes the options declared by the plugin.
*/
export interface PluginOptions {
/**
* Configures the autogenerated Docusaurus sidebar.
*/
sidebar?: Sidebar;
}
export interface Sidebar {
autoConfiguration: boolean;
pretty: boolean;
typescript: boolean;
deprecatedItemClassName: string;
}