mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
export type EmailSend = {
|
|
subject: string;
|
|
content: string;
|
|
receivers: string[];
|
|
};
|
|
|
|
export interface IEmailService {
|
|
send(email: EmailSend): Promise<void>;
|
|
}
|