Interface JSDocTag

interface JSDocTag {
    content: JSDocParagraph;
    inline: boolean;
    name: string;
    range: Range;
    toMarkdown(options?: JSDocRenderOptions): string;
    toString(): string;
}

Hierarchy (view full)

Properties

inline: boolean
name: string
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