@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
21 lines • 652 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import Text from './misc/Text.js';
class ReelShelf extends YTNode {
constructor(data) {
super();
this.title = new Text(data.title);
this.items = Parser.parseArray(data.items);
if (Reflect.has(data, 'endpoint')) {
this.endpoint = new NavigationEndpoint(data.endpoint);
}
}
// XXX: Alias for consistency.
get contents() {
return this.items;
}
}
ReelShelf.type = 'ReelShelf';
export default ReelShelf;
//# sourceMappingURL=ReelShelf.js.map