mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
18 lines
414 B
TypeScript
18 lines
414 B
TypeScript
export = LiveChat;
|
|
declare class LiveChat {
|
|
constructor(data: any);
|
|
type: string;
|
|
header: any;
|
|
initial_display_state: any;
|
|
continuation: any;
|
|
client_messages: {
|
|
reconnect_message: Text;
|
|
unable_to_reconnect_message: Text;
|
|
fatal_error: Text;
|
|
reconnected_message: Text;
|
|
generic_error: Text;
|
|
};
|
|
is_replay: any;
|
|
}
|
|
import Text = require("./Text");
|