mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
chore: v3.0.0 release
This commit is contained in:
15
deno/src/parser/classes/WatchCardSectionSequence.ts
Normal file
15
deno/src/parser/classes/WatchCardSectionSequence.ts
Normal 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;
|
||||
Reference in New Issue
Block a user