@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
13 lines (12 loc) • 535 B
TypeScript
import { type RawNode } from '../index.js';
import { type ObservedArray, YTNode } from '../helpers.js';
import NextContinuationData from './NextContinuationData.js';
import ReloadContinuationData from './ReloadContinuationData.js';
export default class HorizontalList extends YTNode {
static type: string;
visible_item_count: string;
items: ObservedArray<YTNode>;
continuations?: ObservedArray<NextContinuationData | ReloadContinuationData>;
constructor(data: RawNode);
get contents(): ObservedArray<YTNode>;
}