UNPKG

innertuber-rn

Version:

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

11 lines 303 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; class RichItem extends YTNode { constructor(data) { super(); this.content = Parser.parseItem(data.content); } } RichItem.type = 'RichItem'; export default RichItem; //# sourceMappingURL=RichItem.js.map