@steepleinc/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
14 lines (13 loc) • 352 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../types/index.js';
export default class AnimatedThumbnailOverlayView extends YTNode {
static type: string;
thumbnail: {
sources: {
url: string;
width: number;
height: number;
}[];
};
constructor(data: RawNode);
}