@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
16 lines (15 loc) • 426 B
TypeScript
import Thumbnail from '../misc/Thumbnail.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
export default class AnalyticsVideo extends YTNode {
static type: string;
title: string;
metadata: {
views: string;
published: string;
thumbnails: Thumbnail[];
duration: string;
is_short: boolean;
};
constructor(data: RawNode);
}