@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines (10 loc) • 324 B
TypeScript
import Video from './AnalyticsVideo.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
export default class AnalyticsVodCarouselCard extends YTNode {
static type: string;
title: string;
videos?: Video[];
no_data_message?: string;
constructor(data: RawNode);
}