11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
// src/enums/smtp-encryption.ts
|
|
var SmtpEncryption = /* @__PURE__ */ ((SmtpEncryption2) => {
|
|
SmtpEncryption2["None"] = "none";
|
|
SmtpEncryption2["Ssl"] = "ssl";
|
|
SmtpEncryption2["Tls"] = "tls";
|
|
return SmtpEncryption2;
|
|
})(SmtpEncryption || {});
|
|
|
|
export { SmtpEncryption };
|
|
//# sourceMappingURL=out.js.map
|
|
//# sourceMappingURL=smtp-encryption.mjs.map
|