webapp/src/types/mediaitem.d.ts

15 lines
231 B
TypeScript
Raw Normal View History

2024-06-24 17:50:27 +00:00
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;
};