UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

14 lines (13 loc) 412 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import NavigationEndpoint from './NavigationEndpoint.js'; export default class ChannelSubMenu extends YTNode { static type: string; content_type_sub_menu_items: { endpoint: NavigationEndpoint; selected: boolean; title: string; }[]; sort_setting: YTNode; constructor(data: RawNode); }