typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
12 lines (11 loc) • 474 B
TypeScript
import { MarkdownThemeContext } from '../../../theme/index.js';
import { DeclarationReflection, ReflectionKind } from 'typedoc';
/**
* Renders a collection of properties in a table.
*
* There is no association list partial for properties as these are handled as a standard list of members.
*/
export declare function propertiesTable(this: MarkdownThemeContext, model: DeclarationReflection[], options?: {
isEventProps: boolean;
kind: ReflectionKind;
}): string;