UNPKG

@steepleinc/youtubei.js

Version:

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

17 lines (16 loc) 455 B
import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export default class Button extends YTNode { static type: string; text?: string; label?: string; tooltip?: string; style?: string; size?: string; icon_type?: string; is_disabled?: boolean; target_id?: string; endpoint: NavigationEndpoint; constructor(data: RawNode); }