@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines (10 loc) • 389 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
import Button from './Button.js';
import MultiMarkersPlayerBar from './MultiMarkersPlayerBar.js';
export default class DecoratedPlayerBar extends YTNode {
static type: string;
player_bar: MultiMarkersPlayerBar | null;
player_bar_action_button: Button | null;
constructor(data: RawNode);
}