mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +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 = {
|
type StreamItemState = {
|
||||||
subtitleTrack?: StreamSubtitleTrack;
|
subtitleTrack?: StreamSubtitleTrack;
|
||||||
/**
|
|
||||||
* In milliseconds
|
|
||||||
*/
|
|
||||||
subtitleDelay?: number;
|
|
||||||
/**
|
|
||||||
* Subtitles size, platform-dependent units
|
|
||||||
*/
|
|
||||||
subtitleSize?: number;
|
subtitleSize?: number;
|
||||||
/**
|
|
||||||
* Vertical offset of the subtitles, platform-dependent units
|
|
||||||
*/
|
|
||||||
subtitleOffset?: number;
|
subtitleOffset?: number;
|
||||||
audioTrack?: StreamAudioTrack;
|
audioTrack?: StreamAudioTrack;
|
||||||
/**
|
|
||||||
* In milliseconds
|
|
||||||
*/
|
|
||||||
audioDelay?: number;
|
|
||||||
playbackSpeed?: number;
|
playbackSpeed?: number;
|
||||||
playerType?: string;
|
playerType?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
type StreamSubtitleTrack = {
|
type StreamSubtitleTrack = {
|
||||||
/**
|
|
||||||
* Id of the subtitle track
|
|
||||||
*/
|
|
||||||
id: string;
|
id: string;
|
||||||
/**
|
|
||||||
* Flag indicating whether this is an embedded subtitle or an addon subtitle
|
|
||||||
*/
|
|
||||||
embedded: boolean;
|
embedded: boolean;
|
||||||
/**
|
|
||||||
* Optional string indicating subtitle language
|
|
||||||
*/
|
|
||||||
language?: string;
|
language?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
type StreamAudioTrack = {
|
type StreamAudioTrack = {
|
||||||
/**
|
|
||||||
* Id of the audio track
|
|
||||||
*/
|
|
||||||
id: string;
|
id: string;
|
||||||
/**
|
|
||||||
* Optional string indicating audio language
|
|
||||||
*/
|
|
||||||
language?: string;
|
language?: string;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue