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 600a54b commit 4ef131eCopy full SHA for 4ef131e
src/routes/(v2)/v2/issue-467/shared.ts
@@ -1,14 +1,13 @@
1
-import { object, string, z } from "zod"
+import { object, string, z } from 'zod';
2
3
export const Schema1 = object({
4
- value1: string().min(1)
5
-})
6
-
7
-export type Schema1 = z.infer<typeof Schema1>
+ value1: string().min(1)
+});
8
+export type Schema1 = z.infer<typeof Schema1>;
9
10
export const Schema2 = object({
11
- value2: string().min(1)
12
+ value2: string().min(1)
13
14
-export type Schema2 = z.infer<typeof Schema2>
+export type Schema2 = z.infer<typeof Schema2>;
0 commit comments