webapp/src/types/mediaitem.d.ts
2024-06-24 20:50:27 +03:00

15 lines
231 B
TypeScript

export type MediaItem = {
url: string;
title: string;
body: string;
source?: string; // for image
pic?: string;
// audio specific properties
date?: string;
genre?: string;
artist?: string;
lyrics?: string;
};