Files
YouTube.js/deno/src/parser/classes/WatchCardSectionSequence.ts
2023-04-29 05:15:47 +00:00

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);
}
}