@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
13 lines (12 loc) • 385 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Text from './misc/Text.js';
import Button from './Button.js';
export default class EngagementPanelTitleHeader extends YTNode {
static type: string;
title: Text;
visibility_button: Button | null;
contextual_info?: Text;
menu: YTNode | null;
constructor(data: RawNode);
}