@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
12 lines (11 loc) • 350 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class ExpandableTab extends YTNode {
static type: string;
title: string;
endpoint: NavigationEndpoint;
selected: boolean;
content: YTNode;
constructor(data: RawNode);
}