UNPKG

typedoc-plugin-markdown

Version:

A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.

8 lines (7 loc) 246 B
/** * The link element * @param label The text to display for the link * @param url The URL to link to * @returns A Markdown link if URL is provided, otherwise plain text */ export declare function link(label: string, url?: string): string;