TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1// Explicit named exports (Turbopack cannot statically follow `export *` through `.js`-suffixed TS re-exports).2export { sendMail, resolveTransport } from './transport.js';3export type { Mail, SendResult } from './transport.js';4export { verificationEmail, mfaCodeEmail, newLoginEmail, passwordResetEmail, changeEmailEmail, alertEmail, digestEmail, accountDeletionEmail } from './templates.js';5export type { Rendered, AlertMail, DigestSection } from './templates.js';6