UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

15 lines (14 loc) 583 B
import type { ObservedArray } from '../helpers.js'; import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; import { Text } from '../misc.js'; import TranscriptSectionHeader from './TranscriptSectionHeader.js'; import TranscriptSegment from './TranscriptSegment.js'; export default class TranscriptSegmentList extends YTNode { static type: string; initial_segments: ObservedArray<TranscriptSegment | TranscriptSectionHeader>; no_result_label: Text; retry_label: Text; touch_captions_enabled: boolean; constructor(data: RawNode); }