AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
types.ts
根目录
/
workers
/
accounts
/
src
/
email
/
types.ts
1
export interface EmailMessage {
2
to: string;
3
subject: string;
4
text: string;
5
html: string;
6
}
7
8
export interface Mailer {
9
send(msg: EmailMessage): Promise<void>;
10
}
11
11 lines
TYPESCRIPT