mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
export = LiveChatParticipant;
|
|
declare class LiveChatParticipant {
|
|
constructor(data: any);
|
|
type: string;
|
|
name: Text;
|
|
photo: Thumbnail[];
|
|
badges: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Thumbnail = require("./Thumbnail");
|