mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
38 lines
704 B
TypeScript
38 lines
704 B
TypeScript
export = VideoDetails;
|
|
declare class VideoDetails {
|
|
constructor(data: any);
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
id: string;
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
channel_id: string;
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
title: string;
|
|
/**
|
|
* @type {string[]}
|
|
*/
|
|
keywords: string[];
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
short_description: string;
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
author: string;
|
|
duration: number;
|
|
is_owner_viewing: boolean;
|
|
thumbnail: Thumbnail[];
|
|
allow_ratings: boolean;
|
|
view_count: number;
|
|
is_private: boolean;
|
|
is_live_content: boolean;
|
|
is_crawlable: boolean;
|
|
}
|
|
import Thumbnail = require("./Thumbnail");
|