Files
YouTube.js/deno/src/parser/classes/WatchCardSectionSequence.ts
2023-12-27 02:25:21 +00:00

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