@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines • 532 B
JavaScript
import Text from './misc/Text.js';
import { YTNode } from '../helpers.js';
class PageIntroduction extends YTNode {
constructor(data) {
super();
this.header_text = new Text(data.headerText).toString();
this.body_text = new Text(data.bodyText).toString();
this.page_title = new Text(data.pageTitle).toString();
this.header_icon_type = data.headerIcon.iconType;
}
}
PageIntroduction.type = 'PageIntroduction';
export default PageIntroduction;
//# sourceMappingURL=PageIntroduction.js.map