UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

12 lines 456 B
import { YTNode } from '../../helpers.js'; import { Parser } from '../../index.js'; class ShowDialogCommand extends YTNode { constructor(data) { super(); this.inline_content = Parser.parseItem(data.panelLoadingStrategy?.inlineContent); this.remove_default_padding = !!data.removeDefaultPadding; } } ShowDialogCommand.type = 'ShowDialogCommand'; export default ShowDialogCommand; //# sourceMappingURL=ShowDialogCommand.js.map