@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
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);
}