Skip to content

Commit d32cf13

Browse files
committed
easy
1 parent c5fe1b4 commit d32cf13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function handleEden<T, E = unknown>(
4343
*/
4444
export function safeParse<T extends TSchema>(
4545
checker: ReturnType<typeof TypeCompiler.Compile<T>>,
46-
value: unknown,
46+
value: Partial<Static<T>>,
4747
):
4848
| { success: true; data: Static<T> }
4949
| { success: false; errors: { message: string }[] } {

0 commit comments

Comments
 (0)