@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 573 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import DialogHeaderView from './DialogHeaderView.js';
import FormFooterView from './FormFooterView.js';
import CreatePlaylistDialogFormView from './CreatePlaylistDialogFormView.js';
import PanelFooterView from './PanelFooterView.js';
export default class DialogView extends YTNode {
static type: string;
header: DialogHeaderView | null;
footer: FormFooterView | PanelFooterView | null;
custom_content: CreatePlaylistDialogFormView | null;
constructor(data: RawNode);
}