UNPKG

innertuber-rn

Version:

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

12 lines 419 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; class MetadataRowContainer extends YTNode { constructor(data) { super(); this.rows = Parser.parseArray(data.rows); this.collapsed_item_count = data.collapsedItemCount; } } MetadataRowContainer.type = 'MetadataRowContainer'; export default MetadataRowContainer; //# sourceMappingURL=MetadataRowContainer.js.map