UNPKG

@imput/youtubei.js

Version:

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

13 lines (12 loc) 404 B
import { YTNode } from '../helpers.js'; import { type RawNode } from '../index.js'; import ButtonView from './ButtonView.js'; export default class ToggleButtonView extends YTNode { static type: string; default_button: ButtonView | null; toggled_button: ButtonView | null; is_toggling_disabled: boolean; identifier?: string; is_toggled?: boolean; constructor(data: RawNode); }