@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
12 lines (11 loc) • 400 B
TypeScript
import { type RawNode } from '../index.js';
import { type ObservedArray, YTNode } from '../helpers.js';
import Button from './Button.js';
export default class HorizontalMovieList extends YTNode {
static type: string;
items: ObservedArray<YTNode>;
previous_button: Button | null;
next_button: Button | null;
constructor(data: RawNode);
get contents(): ObservedArray<YTNode>;
}