Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created January 17, 2022 14:32
Show Gist options
  • Save iskenxan/0f3997d8b5f3d635c025ca24e377b22e to your computer and use it in GitHub Desktop.
Save iskenxan/0f3997d8b5f3d635c025ca24e377b22e to your computer and use it in GitHub Desktop.
Typescript schema validation with zod
import { z } from "zod";
const User = z.object({
email: z.string().email(),
name: z.string(),
phoneNumber: z.number()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment