@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines (10 loc) • 339 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import PanelFooterView from './PanelFooterView.js';
export default class FormFooterView extends YTNode {
static type: string;
panel_footer: PanelFooterView | null;
form_id: string;
container_type: string;
constructor(data: RawNode);
}