mirror of
https://github.com/p-stream/p-stream.git
synced 2026-08-07 11:50:43 +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";
|
|
}
|