@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
10 lines (9 loc) • 313 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Button from './Button.js';
export default class LiveChatItemList extends YTNode {
static type: string;
max_items_to_display: string;
more_comments_below_button: Button | null;
constructor(data: RawNode);
}