mailer/types.ts

31 lines
512 B
TypeScript
Raw Normal View History

import type { FunctionComponent, JSX } from 'preact'
2024-03-29 16:37:35 +01:00
import type { Contact } from './src/contact.ts'
2024-03-28 22:32:46 +01:00
export type Mail = {
from: Contact
2024-03-28 22:32:46 +01:00
to: Contact[]
subject: string
body: JSX.Element
2024-03-29 16:35:20 +01:00
options: {
cc: Contact[]
cci: Contact[]
attachments: string[]
}
2024-03-28 22:32:46 +01:00
}
export type Template<
T extends FunctionComponent<P>,
P extends Record<string, unknown>,
> = {
name: string
description: string
builder: T
props: {
name: string
description: string
required: boolean
multiline: boolean
tag: P
}[]
}