mirror of
https://github.com/certd/certd.git
synced 2026-04-14 20:40:53 +08:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
export type EmailSend = {
|
|
userId: number;
|
|
subject: string;
|
|
content: string;
|
|
receivers: string[];
|
|
};
|
|
|
|
export interface IEmailService {
|
|
send(email: EmailSend): Promise<void>;
|
|
}
|