mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
export = VideoInfoCardContent;
|
|
declare class VideoInfoCardContent {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
channel_name: Text;
|
|
view_count: Text;
|
|
video_thumbnails: any;
|
|
duration: Text;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|