ultisuite-client/lib/mail-xs-view-chrome.ts
R3D347HR4Y 9266aa34cd huhu
2026-05-19 22:20:43 +02:00

10 lines
312 B
TypeScript

import type { MailMoveTargets } from "@/components/gmail/move-to-menu-items"
/** Actions barre basse xs quand un message est ouvert (piloté par EmailList). */
export type MailXsViewChrome = {
onArchive: () => void
onReply: () => void
moveTargets: MailMoveTargets
onMoveTo: (targetId: string) => void
}