Langium - v4.0.0
    Preparing search index...

    Interface JSDocTag

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

    Hierarchy (View Summary)

    Index

    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