We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb00edd commit ab8e717Copy full SHA for ab8e717
README.md
@@ -1204,7 +1204,7 @@ Starting from this object:
1204
1205
```ts
1206
const user = z.object({
1207
- email: z.string()
+ email: z.string(),
1208
username: z.string(),
1209
});
1210
// { email: string; username: string }
@@ -1269,7 +1269,7 @@ Starting from this object:
1269
1270
1271
1272
1273
1274
}).partial();
1275
// { email?: string | undefined; username?: string | undefined }
0 commit comments