mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-17 01:56:35 +00:00
32 lines
685 B
TypeScript
32 lines
685 B
TypeScript
type Link = {
|
|
name: string,
|
|
category: string,
|
|
url: string,
|
|
};
|
|
|
|
type MetaItemPreview = {
|
|
id: string,
|
|
type: string,
|
|
name: string,
|
|
description: string | null,
|
|
logo: string | null,
|
|
background: string | null,
|
|
poster: string | null,
|
|
posterShape: PosterShape,
|
|
releaseInfo: string | null,
|
|
runtime: string | null,
|
|
released: Date | null | undefined,
|
|
trailerStreams: TrailerStream[],
|
|
links: Link[],
|
|
behaviorHints: BehaviorHints,
|
|
};
|
|
|
|
type MetaItem = MetaItemPreview & {
|
|
videos: Video[],
|
|
};
|
|
|
|
type MetaItemDeepLinks = {
|
|
metaDetailsVideos: string | null,
|
|
metaDetailsStreams: string | null,
|
|
player: string | null,
|
|
};
|