sudo-archive/src/utils/mediaTypes.ts

8 lines
124 B
TypeScript
Raw Normal View History

2023-10-17 14:01:26 +00:00
export interface MediaItem {
id: string;
title: string;
year?: number;
2023-10-17 14:01:26 +00:00
poster?: string;
type: "show" | "movie";
}