(ranges: ReadonlyArray<ast.CommentRange>)
| 39 | }) |
| 40 | |
| 41 | const getDocComment = (ranges: ReadonlyArray<ast.CommentRange>): Option.Option<ast.CommentRange> => |
| 42 | pipe( |
| 43 | ranges, |
| 44 | Array.filter((range) => range.getText().startsWith("/**")), |
| 45 | Array.last |
| 46 | ) |
| 47 | |
| 48 | class Comment { |
| 49 | readonly description: string | undefined |
no test coverage detected