Skip to content

Commit 4ef131e

Browse files
committed
Linter
1 parent 600a54b commit 4ef131e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
import { object, string, z } from "zod"
1+
import { object, string, z } from 'zod';
22

33
export const Schema1 = object({
4-
value1: string().min(1)
5-
})
6-
7-
export type Schema1 = z.infer<typeof Schema1>
4+
value1: string().min(1)
5+
});
86

7+
export type Schema1 = z.infer<typeof Schema1>;
98

109
export const Schema2 = object({
11-
value2: string().min(1)
12-
})
10+
value2: string().min(1)
11+
});
1312

14-
export type Schema2 = z.infer<typeof Schema2>
13+
export type Schema2 = z.infer<typeof Schema2>;

0 commit comments

Comments
 (0)