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) 547 B
import { YTNode, type ObservedArray } from '../helpers.js'; import type { RawNode } from '../index.js'; import Chapter from './Chapter.js'; import Heatmap from './Heatmap.js'; export declare class Marker extends YTNode { static type: string; marker_key: string; value: { heatmap?: Heatmap | null; chapters?: Chapter[]; }; constructor(data: RawNode); } export default class MultiMarkersPlayerBar extends YTNode { static type: string; markers_map: ObservedArray<Marker>; constructor(data: RawNode); }