UNPKG

@np-dev/youtubei-js

Version:

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

15 lines (14 loc) 451 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import InfoPanelContent from './InfoPanelContent.js'; import Menu from './menus/Menu.js'; import Text from './misc/Text.js'; export default class InfoPanelContainer extends YTNode { static type: string; title: Text; menu: Menu | null; content: InfoPanelContent | null; background: string; icon_type?: string; constructor(data: RawNode); }