@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
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