## CommentView Contains information about a single comment. A [`CommentView`](../../src/parser/classes/comments/CommentView.ts) can be a top-level comment or a reply to a top-level comment. ## API * Comment * [.like](#like) ⇒ `function` * [.unlike](#like) ⇒ `function` * [.dislike](#dislike) ⇒ `function` * [.undislike](#dislike) ⇒ `function` * [.reply](#reply) ⇒ `function` * [.translate](#translate) ⇒ `function` ### like() Likes the comment. **Returns:** `Promise.` ### unlike() Unlikes the comment. **Returns:** `Promise.` ### dislike() Dislikes the comment. **Returns:** `Promise.` ### undislike() Undislikes the comment. **Returns:** `Promise.` ### reply(comment_text: string) Replies to the comment. **Returns:** `Promise.` ### translate(target_language: string) Translates the comment to the given language. **Returns:** `Promise.`