taxonomy/lib/validations/auth.ts

6 lines
99 B
TypeScript
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
import * as z from "zod"
export const userAuthSchema = z.object({
email: z.string().email(),
})