import Parser from '../index'; import { YTNode } from '../helpers'; import type Button from './Button'; class LiveChatItemList extends YTNode { static type = 'LiveChatItemList'; max_items_to_display: string; more_comments_below_button: Button | null; constructor(data: any) { super(); this.max_items_to_display = data.maxItemsToDisplay; this.more_comments_below_button = Parser.parseItem