chore: v3.0.0 release

This commit is contained in:
LuanRT
2023-02-17 04:23:49 +00:00
commit 52b7400442
497 changed files with 27613 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import Parser from '../index.ts';
import Text from './misc/Text.ts';
import EndScreenVideo from './EndScreenVideo.ts';
import EndScreenPlaylist from './EndScreenPlaylist.ts';
import { YTNode } from '../helpers.ts';
class WatchNextEndScreen extends YTNode {
static type = 'WatchNextEndScreen';
results;
title: string;
constructor(data: any) {
super();
this.results = Parser.parseArray<EndScreenVideo | EndScreenPlaylist>(data.results, [ EndScreenVideo, EndScreenPlaylist ]);
this.title = new Text(data.title).toString();
}
}
export default WatchNextEndScreen;