@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
18 lines • 721 B
JavaScript
import Text from './misc/Text.js';
import Thumbnail from './misc/Thumbnail.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import { YTNode } from '../helpers.js';
class EndScreenPlaylist extends YTNode {
constructor(data) {
super();
this.id = data.playlistId;
this.title = new Text(data.title);
this.author = new Text(data.longBylineText);
this.endpoint = new NavigationEndpoint(data.navigationEndpoint);
this.thumbnails = Thumbnail.fromResponse(data.thumbnail);
this.video_count = new Text(data.videoCountText);
}
}
EndScreenPlaylist.type = 'EndScreenPlaylist';
export default EndScreenPlaylist;
//# sourceMappingURL=EndScreenPlaylist.js.map