mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
15 lines
349 B
JavaScript
15 lines
349 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('../..');
|
|
|
|
class CommentActionButtons {
|
|
type = 'CommentActionButtons';
|
|
|
|
constructor(data) {
|
|
this.like_button = Parser.parse(data.likeButton);
|
|
this.dislike_button = Parser.parse(data.dislikeButton);
|
|
this.reply_button = Parser.parse(data.replyButton);
|
|
}
|
|
}
|
|
|
|
module.exports = CommentActionButtons; |