UNPKG

innertuber-rn

Version:

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

12 lines 386 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; import Tab from './Tab.js'; class TabbedSearchResults extends YTNode { constructor(data) { super(); this.tabs = Parser.parseArray(data.tabs, Tab); } } TabbedSearchResults.type = 'TabbedSearchResults'; export default TabbedSearchResults; //# sourceMappingURL=TabbedSearchResults.js.map