@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines (10 loc) • 314 B
TypeScript
import { type RawNode } from '../index.js';
import { YTNode } from '../helpers.js';
import Text from './misc/Text.js';
export default class HowThisWasMadeSectionView extends YTNode {
static type: string;
section_title?: Text;
body_text?: Text;
body_header?: Text;
constructor(data: RawNode);
}