Untitled

Anonymous
plain_text
10/01/2024 12:27 PM
160 B
21
Indexable
const userSchema = z.object({
  name: z.string().min(1),
  age: z.number().min(18),
  email: z.string().email(),
});
Editor is loading...
Leave a Comment