mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 03:59:38 +00:00
24 lines
932 B
TypeScript
24 lines
932 B
TypeScript
import type { ObservedArray } from '../helpers.js';
|
|
import { YTNode } from '../helpers.js';
|
|
import type { RawNode } from '../index.js';
|
|
import { Parser } 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 = 'TranscriptSegmentList';
|
|
|
|
initial_segments: ObservedArray<TranscriptSegment | TranscriptSectionHeader>;
|
|
no_result_label: Text;
|
|
retry_label: Text;
|
|
touch_captions_enabled: boolean;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.initial_segments = Parser.parseArray(data.initialSegments, [ TranscriptSegment, TranscriptSectionHeader ]);
|
|
this.no_result_label = new Text(data.noResultLabel);
|
|
this.retry_label = new Text(data.retryLabel);
|
|
this.touch_captions_enabled = data.touchCaptionsEnabled;
|
|
}
|
|
} |