mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
export = LiveChatMessageInput;
|
|
declare class LiveChatMessageInput {
|
|
constructor(data: any);
|
|
author_name: Text;
|
|
author_photo: Thumbnail[];
|
|
send_button: any;
|
|
target_id: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Thumbnail = require("./Thumbnail");
|