UNPKG

@np-dev/youtubei-js

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

19 lines (18 loc) 530 B
import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export default class ThumbnailOverlayToggleButton extends YTNode { static type: string; is_toggled?: boolean; icon_type: { toggled: string; untoggled: string; }; tooltip: { toggled: string; untoggled: string; }; toggled_endpoint: NavigationEndpoint; untoggled_endpoint: NavigationEndpoint; constructor(data: RawNode); }