typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
10 lines (9 loc) • 333 B
TypeScript
import { MarkdownThemeContext } from '../../../theme/index.js';
import { Comment } from 'typedoc';
export declare function comment(this: MarkdownThemeContext, model: Comment, options?: {
headingLevel?: number;
showSummary?: boolean;
showTags?: boolean;
showReturns?: boolean;
isTableColumn?: boolean;
}): string;