mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 03:59:38 +00:00
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class LiveChatItemList {
|
|
type = 'LiveChatItemList';
|
|
|
|
constructor(data) {
|
|
this.max_items_to_display = data.maxItemsToDisplay;
|
|
this.more_comments_below_button = Parser.parse(data.moreCommentsBelowButton);
|
|
}
|
|
}
|
|
|
|
module.exports = LiveChatItemList; |