@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
13 lines (12 loc) • 382 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import ThumbnailView from './ThumbnailView.js';
export default class CollectionThumbnailView extends YTNode {
static type: string;
primary_thumbnail: ThumbnailView | null;
stack_color?: {
light_theme: number;
dark_theme: number;
};
constructor(data: RawNode);
}