typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
9 lines (8 loc) • 376 B
TypeScript
import { MarkdownThemeContext } from '../../../theme/index.js';
import { DeclarationReflection } from 'typedoc';
/**
* Renders a top-level member that contains group and child members such as Classes, Interfaces and Enums.
*/
export declare function memberWithGroups(this: MarkdownThemeContext, model: DeclarationReflection, options: {
headingLevel: number;
}): string;