File tree 3 files changed +9
-2
lines changed 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
<p align =" center " >
2
- <img src =" logo.svg " width =" 200px " align =" center " alt =" Zod logo " />
2
+ <img src =" https://raw.githubusercontent.com/colinhacks/zod/main/ logo.svg" width =" 200px " align =" center " alt =" Zod logo " />
3
3
<h1 align =" center " >Zod</h1 >
4
4
<p align =" center " >
5
5
<a href =" https://zod.dev " >zod.dev</a >
Original file line number Diff line number Diff line change 1
1
<p align =" center " >
2
- <img src =" logo.svg " width =" 200px " align =" center " alt =" Zod logo " />
2
+ <img src =" https://raw.githubusercontent.com/colinhacks/zod/main/ logo.svg" width =" 200px " align =" center " alt =" Zod logo " />
3
3
<h1 align =" center " >Zod</h1 >
4
4
<p align =" center " >
5
5
<a href =" https://zod.dev " >zod.dev</a >
Original file line number Diff line number Diff line change 1
1
import { z } from "./src" ;
2
2
3
3
z ;
4
+
5
+ const Schema = z
6
+ . object ( {
7
+ limit : z . number ( ) . default ( 0 ) ,
8
+ } )
9
+ . default ( { } ) ;
10
+ type Schema = z . infer < typeof Schema > ;
You can’t perform that action at this time.
0 commit comments