Files
YouTube.js/src/parser/classes/WatchCardSectionSequence.ts
2023-04-28 22:35:09 -03:00

14 lines
382 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);
}
}