UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

20 lines (19 loc) 473 B
import * as z from "zod"; export declare const userAuthSchema: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; export declare const LoginRequestSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { password: string; username: string; }, { password: string; username: string; }>; export type LoginRequest = z.infer<typeof LoginRequestSchema>;