mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-12 23:40:26 +00:00
17 lines
No EOL
378 B
TypeScript
17 lines
No EOL
378 B
TypeScript
type VideoDeepLinks = {
|
|
metaDetailsStreams: string,
|
|
player: string | null,
|
|
externalPlayer: ExternalPlayerLinks | null,
|
|
};
|
|
|
|
type Video = {
|
|
id: string,
|
|
title: string,
|
|
overview: string | null,
|
|
released: string | null,
|
|
thumbnail: string | null,
|
|
season?: number,
|
|
episode?: number,
|
|
streams: Stream[],
|
|
trailerStreams: TrailerStream[],
|
|
}; |