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.
7 lines • 576 B
TypeScript
import { z } from "zod";
export declare const getPasswordSchema: (type: "Password" | "ConfirmPassword") => z.ZodEffects<z.ZodString, string, string>;
export declare const getEmailSchema: () => z.ZodEffects<z.ZodString, string, string>;
export declare const getUsernameSchema: () => z.ZodEffects<z.ZodString, string, string>;
export declare const getDisplayNameSchema: () => z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
export declare const getAvatarUrlSchema: () => z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
//# sourceMappingURL=templates.d.ts.map