mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-28 00:56:23 +00:00
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
export = VideoDetails;
|
|
declare class VideoDetails {
|
|
constructor(data: any);
|
|
id: any;
|
|
title: any;
|
|
duration: number;
|
|
keywords: any;
|
|
channel_id: any;
|
|
is_owner_viewing: any;
|
|
description: any;
|
|
is_crawlable: any;
|
|
thumbnails: any;
|
|
allow_ratings: any;
|
|
view_count: number;
|
|
author: any;
|
|
is_private: any;
|
|
is_unplugged_corpus: any;
|
|
is_live_content: any;
|
|
}
|