@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
10 lines (9 loc) • 317 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class HeatMarker extends YTNode {
static type: string;
time_range_start_millis: number;
marker_duration_millis: number;
heat_marker_intensity_score_normalized: number;
constructor(data: RawNode);
}