@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 516 B
TypeScript
import { type RawNode } from '../index.js';
import { YTNode, type ObservedArray } from '../helpers.js';
import ButtonView from './ButtonView.js';
import VideoAttributeView from './VideoAttributeView.js';
export default class VideoAttributesSectionView extends YTNode {
static type: string;
header_title: string;
header_subtitle: string;
video_attributes: ObservedArray<VideoAttributeView>;
previous_button: ButtonView | null;
next_button: ButtonView | null;
constructor(data: RawNode);
}