UNPKG

codalware-auth

Version:

Complete authentication system with enterprise security, attack protection, team workspaces, waitlist, billing, UI components, 2FA, and account recovery - production-ready in 5 minutes. Enhanced CLI with verification, rollback, and App Router scaffolding.

12 lines (10 loc) 218 B
export type MailArgs = { to: string; subject: string; html: string; text?: string; metadata?: Record<string, any>; }; export interface EmailProvider { sendMail(args: MailArgs): Promise<void>; }