Type Alias JsdocBlockWithInline

    JsdocBlockWithInline: {
        description: string;
        inlineTags: (JsdocInlineTagNoType & {
            line?: Integer;
        })[];
        problems: comment_parser.Problem[];
        source: comment_parser.Line[];
        tags: JsdocTagWithInline[];
    }

    Expands on comment-parser's Block interface.