UNPKG

innertuber-rn

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

12 lines 462 B
import { YTNode } from '../helpers.js'; import Text from './misc/Text.js'; class ThumbnailOverlayInlineUnplayable extends YTNode { constructor(data) { super(); this.text = new Text(data.text).toString(); this.icon_type = data.icon.iconType; } } ThumbnailOverlayInlineUnplayable.type = 'ThumbnailOverlayInlineUnplayable'; export default ThumbnailOverlayInlineUnplayable; //# sourceMappingURL=ThumbnailOverlayInlineUnplayable.js.map