Files
TypeScript-Backend-satyam/src/interfaces/IMailer.ts

3 lines
104 B
TypeScript

export interface IMailer {
SendMail(to: string, subject: string, body: unknown): Promise<boolean>;
}