UNPKG

@antoniojps/youtubei.js

Version:

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

11 lines 326 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; export default class SharePanelHeader extends YTNode { static type = 'SharePanelHeader'; title; constructor(data) { super(); this.title = Parser.parseItem(data.title); } } //# sourceMappingURL=SharePanelHeader.js.map