返回 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