mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
export = CommentReplyDialog;
|
|
declare class CommentReplyDialog {
|
|
constructor(data: any);
|
|
type: string;
|
|
reply_button: any;
|
|
cancel_button: any;
|
|
author_thumbnail: Thumbnail[];
|
|
placeholder: Text;
|
|
error_message: Text;
|
|
}
|
|
import Thumbnail = require("../Thumbnail");
|
|
import Text = require("../Text");
|