@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) • 325 B
TypeScript
import { type RawNode } from '../index.js';
import { type ObservedArray, YTNode } from '../helpers.js';
export default class HorizontalList extends YTNode {
static type: string;
visible_item_count: string;
items: ObservedArray<YTNode>;
constructor(data: RawNode);
get contents(): ObservedArray<YTNode>;
}