mirror of
https://github.com/sussy-code/smov.git
synced 2026-03-11 17:55:35 +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";
|
|
}
|