UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

19 lines (18 loc) 527 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import Text from './misc/Text.js'; export default class LiveChat extends YTNode { static type: string; header: YTNode; initial_display_state: string; continuation: string; client_messages: { reconnect_message: Text; unable_to_reconnect_message: Text; fatal_error: Text; reconnected_message: Text; generic_error: Text; }; is_replay: boolean; constructor(data: RawNode); }