@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines • 597 B
JavaScript
import * as Parser from '../parser.js';
import { YTNode } from '../helpers.js';
class GuideCollapsibleSectionEntry extends YTNode {
constructor(data) {
super();
this.header_entry = Parser.parseItem(data.headerEntry);
this.expander_icon = data.expanderIcon.iconType;
this.collapser_icon = data.collapserIcon.iconType;
this.section_items = Parser.parseArray(data.sectionItems);
}
}
GuideCollapsibleSectionEntry.type = 'GuideCollapsibleSectionEntry';
export default GuideCollapsibleSectionEntry;
//# sourceMappingURL=GuideCollapsibleSectionEntry.js.map