rallly/nodemailer-sendgrid-transport.d.ts
2022-04-12 07:14:28 +01:00

4 lines
160 B
TypeScript

declare module "nodemailer-sendgrid-transport" {
function sgTransport(options: { auth: { api_key: string } }): SMTPTransport;
export default sgTransport;
}