UNPKG

@duell10111/youtubei.js

Version:

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

15 lines 517 B
import { YTNode } from '../helpers.js'; import Thumbnail from './misc/Thumbnail.js'; import Text from './misc/Text.js'; class PreviewButton extends YTNode { constructor(data) { super(); this.title = new Text(data.title); this.subtitle = new Text(data.subtitle); this.thumbnail = Thumbnail.fromResponse(data.thumbnail); this.byline = new Text(data.byline); } } PreviewButton.type = 'PreviewButton'; export default PreviewButton; //# sourceMappingURL=PreviewButton.js.map