@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
18 lines (17 loc) • 577 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import InfoPanelContent from './InfoPanelContent.js';
import Menu from './menus/Menu.js';
import Text from './misc/Text.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class InfoPanelContainer extends YTNode {
static type: string;
title: Text;
menu: Menu | null;
content: InfoPanelContent | null;
header_endpoint?: NavigationEndpoint;
background: string;
title_style?: string;
icon_type?: string;
constructor(data: RawNode);
}