mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 02:52:12 +00:00
13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
import { Parser, type RawNode } from '../index.js';
|
|
import { type ObservedArray, YTNode } from '../helpers.js';
|
|
|
|
export default class CarouselHeader extends YTNode {
|
|
static type = 'CarouselHeader';
|
|
|
|
contents: ObservedArray<YTNode>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.contents = Parser.parseArray(data.contents);
|
|
}
|
|
} |