UNPKG

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.

9 lines 363 B
import type { AegisAuthConfig } from "../config"; interface PasswordResetEmailOptions { toEmail: string; token: string; config: Required<AegisAuthConfig>; } export declare function sendPasswordResetEmail(options: PasswordResetEmailOptions): Promise<import("resend").CreateEmailResponse>; export {}; //# sourceMappingURL=sendPasswordResetEmail.d.ts.map