mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-19 21:47:14 +00:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export interface MediaItem {
|
|
id: string;
|
|
title: string;
|
|
year?: number;
|
|
poster?: string;
|
|
type: "show" | "movie";
|
|
}
|