mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-22 04:17:16 +00:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
export interface MediaItem {
|
|
id: string;
|
|
title: string;
|
|
year?: number;
|
|
release_date?: Date;
|
|
poster?: string;
|
|
type: "show" | "movie";
|
|
onHoverInfoEnter?: () => void;
|
|
onHoverInfoLeave?: () => void;
|
|
}
|