@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
10 lines (9 loc) • 378 B
TypeScript
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);
}