UNPKG

innertuber-rn

Version:

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

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