UNPKG

@duell10111/youtubei.js

Version:

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

15 lines 513 B
import { YTNode } from '../../helpers.js'; import { Parser } from '../../index.js'; import TvSecondaryNavSection from './TvSecondaryNavSection.js'; import Text from '../misc/Text.js'; export default class TvSecondaryNav extends YTNode { static type = 'TvSecondaryNav'; sections; title; constructor(data) { super(); this.sections = Parser.parseArray(data.sections, TvSecondaryNavSection); this.title = new Text(data.title); } } //# sourceMappingURL=TvSecondaryNav.js.map