Files
YouTube.js/typings/lib/parser/classes/VideoDetails.d.ts
2022-07-11 06:13:21 -03:00

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");