chore: remove docs

Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
Lachezar Lechev 2025-12-17 16:17:19 +02:00
parent e805bea3d4
commit f0ef89cbdd
No known key found for this signature in database
GPG key ID: 69BDCB3ED8CE8037

29
src/types/Stream.d.ts vendored
View file

@ -19,49 +19,20 @@ type Stream = {
type StreamItemState = {
subtitleTrack?: StreamSubtitleTrack;
/**
* In milliseconds
*/
subtitleDelay?: number;
/**
* Subtitles size, platform-dependent units
*/
subtitleSize?: number;
/**
* Vertical offset of the subtitles, platform-dependent units
*/
subtitleOffset?: number;
audioTrack?: StreamAudioTrack;
/**
* In milliseconds
*/
audioDelay?: number;
playbackSpeed?: number;
playerType?: string;
};
type StreamSubtitleTrack = {
/**
* Id of the subtitle track
*/
id: string;
/**
* Flag indicating whether this is an embedded subtitle or an addon subtitle
*/
embedded: boolean;
/**
* Optional string indicating subtitle language
*/
language?: string;
};
type StreamAudioTrack = {
/**
* Id of the audio track
*/
id: string;
/**
* Optional string indicating audio language
*/
language?: string;
};