UNPKG

@duell10111/youtubei.js

Version:

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

14 lines 511 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import OverlayPanel from './OverlayPanel.js'; import Button from './Button.js'; class OverlayTwoPanel extends YTNode { constructor(data) { super(); this.action_panel = Parser.parseItem(data.actionPanel, OverlayPanel); this.back_button = Parser.parseItem(data.backButton, Button); } } OverlayTwoPanel.type = 'OverlayTwoPanel'; export default OverlayTwoPanel; //# sourceMappingURL=OverlayTwoPanel.js.map