stremio-web/src/types/MetaItem.d.ts
2024-12-06 14:39:16 +02:00

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