UNPKG

@antoniojps/youtubei.js

Version:

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

16 lines 528 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import PanelFooterView from './PanelFooterView.js'; export default class FormFooterView extends YTNode { static type = 'FormFooterView'; panel_footer; form_id; container_type; constructor(data) { super(); this.panel_footer = Parser.parseItem(data.panelFooter, PanelFooterView); this.form_id = data.formId; this.container_type = data.containerType; } } //# sourceMappingURL=FormFooterView.js.map