UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

14 lines (13 loc) 429 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import Button from './Button.js'; import Dropdown from './Dropdown.js'; export default class CreatePlaylistDialog extends YTNode { static type: string; title: string; title_placeholder: string; privacy_option: Dropdown | null; cancel_button: Button | null; create_button: Button | null; constructor(data: RawNode); }