aegis-auth
Version:
A credentials-based auth solution for Next.js (and other Node projects) with IP rate-limiting, account lockouts, and sessions in DB.
10 lines • 360 B
TypeScript
import type { AegisAuthConfig } from "../config";
export interface SendEmailOptions {
from?: string;
to: string | string[];
subject: string;
html: string;
config: Required<AegisAuthConfig>;
}
export declare function sendEmail(options: SendEmailOptions): Promise<import("resend").CreateEmailResponse>;
//# sourceMappingURL=sendEmail.d.ts.map