mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
export = CommentsHeader;
|
|
declare class CommentsHeader {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
count: Text;
|
|
comments_count: Text;
|
|
create_renderer: any;
|
|
sort_menu: any;
|
|
custom_emojis: any;
|
|
}
|
|
import Text = require("../Text");
|