mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
export = CommentSimplebox;
|
|
declare class CommentSimplebox {
|
|
constructor(data: any);
|
|
type: string;
|
|
submit_button: any;
|
|
cancel_button: any;
|
|
author_thumbnails: Thumbnail[];
|
|
placeholder: Text;
|
|
avatar_size: any;
|
|
}
|
|
import Thumbnail = require("../Thumbnail");
|
|
import Text = require("../Text");
|