@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
15 lines • 524 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import OverlayPanel from './OverlayPanel.js';
import Button from './Button.js';
export default class OverlayTwoPanel extends YTNode {
static type = 'OverlayTwoPanel';
action_panel;
back_button;
constructor(data) {
super();
this.action_panel = Parser.parseItem(data.actionPanel, OverlayPanel);
this.back_button = Parser.parseItem(data.backButton, Button);
}
}
//# sourceMappingURL=OverlayTwoPanel.js.map