chore: v5.0.0 release

This commit is contained in:
LuanRT
2023-04-29 05:15:47 +00:00
parent b19d687eed
commit 48dc99e28b
445 changed files with 4076 additions and 3578 deletions

View File

@@ -1,15 +1,14 @@
import Parser from '../index.ts';
import type { ObservedArray} from '../helpers.ts';
import { YTNode } from '../helpers.ts';
import Parser, { type RawNode } from '../index.ts';
class WatchCardSectionSequence extends YTNode {
export default class WatchCardSectionSequence extends YTNode {
static type = 'WatchCardSectionSequence';
lists;
lists: ObservedArray<YTNode>;
constructor(data: any) {
constructor(data: RawNode) {
super();
this.lists = Parser.parseArray(data.lists);
}
}
export default WatchCardSectionSequence;
}