Interface JSDocParagraph

interface JSDocParagraph {
    inlines: JSDocInline[];
    range: Range;
    toMarkdown(options?: JSDocRenderOptions): string;
    toString(): string;
}

Hierarchy (view full)

Properties

Methods

Properties

inlines: JSDocInline[]
range: Range

Represents the range that this JSDoc element occupies. If the JSDoc was parsed from a CstNode, the range will represent the location in the source document.

Methods