mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
export = Poll;
|
|
declare class Poll {
|
|
constructor(data: any);
|
|
type: string;
|
|
choices: any;
|
|
poll_type: any;
|
|
total_votes: Text;
|
|
live_chat_poll_id: any;
|
|
}
|
|
import Text = require("./Text");
|