rokojori-auth/source/server/email/EmailSender.ts

5 lines
106 B
TypeScript
Raw Permalink Normal View History

2026-07-13 03:48:45 +00:00
export interface EmailSender
{
sendEmail( to: string, subject: string, body: string ): Promise<void>;
}