Files
mail/src/types/mediaViewer.ts
T
2026-06-18 19:07:39 -04:00

9 lines
235 B
TypeScript

import type { MessagePartInterface } from "@MailManager/types/message"
export interface MediaViewerItem {
id: string
title: string
mime: string
size?: number | null
meta: { index: number; attachment: MessagePartInterface }
}