typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
10 lines (9 loc) • 354 B
TypeScript
import { MarkdownThemeContext } from '../../../theme/index.js';
import { SignatureReflection } from 'typedoc';
export declare function signature(this: MarkdownThemeContext, model: SignatureReflection, options: {
headingLevel: number;
nested?: boolean;
accessor?: string;
multipleSignatures?: boolean;
hideTitle?: boolean;
}): string;