chore: typescript add ConvertedStream

Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
Lachezar Lechev 2025-02-04 10:31:57 +02:00
parent 61c0bc0944
commit 2918c13d7c
No known key found for this signature in database
GPG key ID: FDC9325CE311E8A4

View file

@ -18,6 +18,11 @@ type SelectedStream = Stream & {
deepLinks: StreamDeepLinks,
};
type ConvertedStream = {
url: string,
deepLinks: StreamDeepLinks,
};
type Subtitle = {
id: string,
lang: string,
@ -41,6 +46,7 @@ type Player = {
streamRequest: ResourceRequest,
subtitlesPath: ResourceRequestPath,
} | null,
stream: ConvertedStream,
seriesInfo: SeriesInfo | null,
subtitles: Subtitle[],
title: string | null,