UNPKG

@imput/youtubei.js

Version:

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

22 lines 970 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import Text from './misc/Text.js'; class LiveChat extends YTNode { constructor(data) { super(); this.header = Parser.parseItem(data.header); this.initial_display_state = data.initialDisplayState; this.continuation = data.continuations[0]?.reloadContinuationData?.continuation; this.client_messages = { reconnect_message: new Text(data.clientMessages.reconnectMessage), unable_to_reconnect_message: new Text(data.clientMessages.unableToReconnectMessage), fatal_error: new Text(data.clientMessages.fatalError), reconnected_message: new Text(data.clientMessages.reconnectedMessage), generic_error: new Text(data.clientMessages.genericError) }; this.is_replay = !!data.isReplay; } } LiveChat.type = 'LiveChat'; export default LiveChat; //# sourceMappingURL=LiveChat.js.map