UNPKG

@np-dev/youtubei-js

Version:

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

17 lines (16 loc) 511 B
import { YTNode } from '../../helpers.js'; import type { RawNode } from '../../index.js'; import NavigationEndpoint from '../NavigationEndpoint.js'; import SectionList from '../SectionList.js'; export default class AnchoredSection extends YTNode { static type: string; title: string; content: SectionList | null; endpoint: NavigationEndpoint; category_assets: { asset_key: string; background_color: string; }; category_type: string; constructor(data: RawNode); }