@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines (10 loc) • 353 B
TypeScript
import type { RawNode } from '../index.js';
import { type ObservedArray, YTNode } from '../helpers.js';
export default class GuideCollapsibleSectionEntry extends YTNode {
static type: string;
header_entry: YTNode;
expander_icon: string;
collapser_icon: string;
section_items: ObservedArray<YTNode>;
constructor(data: RawNode);
}