mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
26 lines
619 B
TypeScript
26 lines
619 B
TypeScript
export = Movie;
|
|
declare class Movie {
|
|
constructor(data: any);
|
|
type: string;
|
|
id: any;
|
|
title: Text;
|
|
description_snippet: Text;
|
|
top_metadata_items: Text;
|
|
thumbnails: Thumbnail[];
|
|
thumbnail_overlays: any;
|
|
author: Author;
|
|
duration: {
|
|
text: any;
|
|
seconds: number;
|
|
};
|
|
endpoint: NavigationEndpoint;
|
|
badges: any;
|
|
use_vertical_poster: any;
|
|
show_action_menu: any;
|
|
menu: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Thumbnail = require("./Thumbnail");
|
|
import Author = require("./Author");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|