UNPKG

@duell10111/youtubei.js

Version:

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

11 lines (10 loc) 381 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import EntityMetadata from './EntityMetadata.js'; import PlaylistVideoList from './PlaylistVideoList.js'; export default class TwoColumn extends YTNode { static type: string; left_column: EntityMetadata | null; right_column: PlaylistVideoList | null; constructor(data: RawNode); }