UNPKG

@np-dev/youtubei-js

Version:

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

10 lines (9 loc) 378 B
import { type RawNode } from '../index.js'; import { type ObservedArray, YTNode } from '../helpers.js'; import PlaylistPanelVideo from './PlaylistPanelVideo.js'; export default class PlaylistPanelVideoWrapper extends YTNode { static type: string; primary: PlaylistPanelVideo | null; counterpart?: ObservedArray<PlaylistPanelVideo>; constructor(data: RawNode); }