mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
chore: remove docs
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
parent
e805bea3d4
commit
f0ef89cbdd
1 changed files with 0 additions and 29 deletions
29
src/types/Stream.d.ts
vendored
29
src/types/Stream.d.ts
vendored
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue