UNPKG

@duell10111/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

13 lines (12 loc) 358 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import Thumbnail from './misc/Thumbnail.js'; import Text from './misc/Text.js'; export default class PreviewButton extends YTNode { static type: string; title: Text; subtitle: Text; thumbnail: Thumbnail[]; byline: Text; constructor(data: RawNode); }