p-stream/src/utils/mediaTypes.ts
mrjvs 023a850e4f error handling for video + bookmark migration + last watched episode shown + progress migrations
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com>
2023-10-30 21:29:02 +01:00

7 lines
124 B
TypeScript

export interface MediaItem {
id: string;
title: string;
year?: number;
poster?: string;
type: "show" | "movie";
}