taxonomy/lib/validations/user.ts

6 lines
105 B
TypeScript
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
import * as z from "zod"
export const userNameSchema = z.object({
name: z.string().min(3).max(32),
})