UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

15 lines 440 B
import { YTNode } from '../helpers.js'; import Text from './misc/Text.js'; export default class TranscriptSectionHeader extends YTNode { static type = 'TranscriptSectionHeader'; start_ms; end_ms; snippet; constructor(data) { super(); this.start_ms = data.startMs; this.end_ms = data.endMs; this.snippet = new Text(data.snippet); } } //# sourceMappingURL=TranscriptSectionHeader.js.map