import { YTNode, type ObservedArray } from '../helpers.js'; import Parser, { type RawNode } from '../index.js'; export default class MerchandiseShelf extends YTNode { static type = 'MerchandiseShelf'; title: string; menu: YTNode; items: ObservedArray; constructor(data: RawNode) { super(); this.title = data.title; this.menu = Parser.parseItem(data.actionButton); this.items = Parser.parseArray(data.items); } // XXX: Alias for consistency. get contents() { return this.items; } }