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