@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
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