Files
YouTube.js/src/parser/classes/ExpandedShelfContents.ts

18 lines
425 B
TypeScript

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