stremio-web/src/types/Video.d.ts
2023-03-17 05:38:51 +01:00

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[],
};