refactor(chore): flatten Mail type

This commit is contained in:
Julien Oculi 2024-03-29 16:35:20 +01:00
parent c221370973
commit e97e1503cb

View file

@ -1,16 +1,14 @@
import type { JSX } from 'preact'
import { Contact } from './src/contact.ts'
export type Options = {
cc: Contact[]
cci: Contact[]
attachments: string[]
}
export type Mail = {
from: Contact
to: Contact[]
subject: string
body: JSX.Element
options: Options
options: {
cc: Contact[]
cci: Contact[]
attachments: string[]
}
}