UNPKG

@duell10111/youtubei.js

Version:

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

11 lines (10 loc) 365 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import OverlayPanelHeader from './OverlayPanelHeader.js'; import ScrollPane from './ScrollPane.js'; export default class OverlayPanel extends YTNode { static type: string; header: OverlayPanelHeader | null; content: ScrollPane | null; constructor(data: RawNode); }