feat: attachment preview

Signed-off-by: Sebastian <krupinski01@gmail.com>
This commit is contained in:
2026-06-18 19:07:39 -04:00
parent 0af38cf50c
commit 34dc636d13
6 changed files with 197 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { MessagePartInterface } from "@MailManager/types/message"
export interface MediaViewerItem {
id: string
title: string
mime: string
size?: number | null
meta: { index: number; attachment: MessagePartInterface }
}