Files
YouTube.js/typings/lib/parser/contents/classes/EndScreenVideo.d.ts
2022-06-06 04:20:28 -03:00

20 lines
466 B
TypeScript

export = EndScreenVideo;
declare class EndScreenVideo {
constructor(data: any);
type: string;
id: any;
title: Text;
thumbnails: any;
thumbnail_overlays: any;
author: Author;
endpoint: NavigationEndpoint;
short_view_count_text: Text;
duration: {
text: any;
seconds: any;
};
}
import Text = require("./Text");
import Author = require("./Author");
import NavigationEndpoint = require("./NavigationEndpoint");