mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 00:02:09 +00:00
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
import type { ObservedArray} from '../helpers.ts';
|
|
import { YTNode } from '../helpers.ts';
|
|
import Parser, { type RawNode } from '../index.ts';
|
|
|
|
export default class WatchCardSectionSequence extends YTNode {
|
|
static type = 'WatchCardSectionSequence';
|
|
|
|
lists: ObservedArray<YTNode>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.lists = Parser.parseArray(data.lists);
|
|
}
|
|
} |