10 lines
312 B
TypeScript
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
|
|
}
|