UNPKG

@steepleinc/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

13 lines (12 loc) 503 B
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'; export default class DialogView extends YTNode { static type: string; header: DialogHeaderView | null; footer: FormFooterView | null; custom_content: CreatePlaylistDialogFormView | null; constructor(data: RawNode); }