Interface JSDocValue

interface JSDocValue {
    range: Range;
    toMarkdown(options?: JSDocRenderOptions): string;
    toString(): string;
}

Hierarchy (view full)

Properties

Methods

Properties

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