UNPKG

@np-dev/youtubei-js

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

13 lines 499 B
import { YTNode } from '../../helpers.js'; import { Parser } from '../../index.js'; import Transcript from '../Transcript.js'; class UpdateEngagementPanelAction extends YTNode { constructor(data) { super(); this.target_id = data.targetId; this.content = Parser.parseItem(data.content, Transcript); } } UpdateEngagementPanelAction.type = 'UpdateEngagementPanelAction'; export default UpdateEngagementPanelAction; //# sourceMappingURL=UpdateEngagementPanelAction.js.map