Type alias MediaData

MediaData: {
    type: "Image";
    url: string;
} | {
    type: "Video";
    url: string;
    videoCoverUrl?: string;
}