UNPKG

@duell10111/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

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