UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

30 lines 1.03 kB
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import InfoPanelContent from './InfoPanelContent.js'; import Menu from './menus/Menu.js'; import Text from './misc/Text.js'; import NavigationEndpoint from './NavigationEndpoint.js'; export default class InfoPanelContainer extends YTNode { static type = 'InfoPanelContainer'; title; menu; content; header_endpoint; background; title_style; icon_type; constructor(data) { super(); this.title = new Text(data.title); this.menu = Parser.parseItem(data.menu, Menu); this.content = Parser.parseItem(data.content, InfoPanelContent); if (data.headerEndpoint) this.header_endpoint = new NavigationEndpoint(data.headerEndpoint); this.background = data.background; this.title_style = data.titleStyle; if (Reflect.has(data, 'icon')) { this.icon_type = data.icon?.iconType; } } } //# sourceMappingURL=InfoPanelContainer.js.map