UNPKG

826 BTypeScriptView Raw
1import { DocNodeKind, DocNode } from './DocNode';
2import { DocNodeContainer, IDocNodeContainerParameters } from './DocNodeContainer';
3/**
4 * Constructor parameters for {@link DocParagraph}.
5 */
6export interface IDocParagraphParameters extends IDocNodeContainerParameters {
7}
8/**
9 * Represents a paragraph of text, similar to a `<p>` element in HTML.
10 * Like CommonMark, the TSDoc syntax uses blank lines to delineate paragraphs
11 * instead of explicitly notating them.
12 */
13export declare class DocParagraph extends DocNodeContainer {
14 /**
15 * Don't call this directly. Instead use {@link TSDocParser}
16 * @internal
17 */
18 constructor(parameters: IDocParagraphParameters, childNodes?: ReadonlyArray<DocNode>);
19 /** @override */
20 get kind(): DocNodeKind | string;
21}
22//# sourceMappingURL=DocParagraph.d.ts.map
\No newline at end of file