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,15 @@
import Parser from '../index.ts';
import { YTNode } from '../helpers.ts';
class WatchCardSectionSequence extends YTNode {
static type = 'WatchCardSectionSequence';
lists;
constructor(data: any) {
super();
this.lists = Parser.parseArray(data.lists);
}
}
export default WatchCardSectionSequence;