Skip to content

Commit fb02127

Browse files
committed
format
1 parent 97a7430 commit fb02127

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/solid/search-validator-adapters/tests/arktype.test-d.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ test('infers correct input and output type for valibot', () => {
1111
.exclude<boolean | ((...args: ReadonlyArray<any>) => any)>()
1212
.toEqualTypeOf<{ search?: string } | undefined>()
1313

14-
expectTypeOf(ArkTypeRoute.useSearch()).toEqualTypeOf<Accessor<{
15-
search: string
16-
}>>()
14+
expectTypeOf(ArkTypeRoute.useSearch()).toEqualTypeOf<
15+
Accessor<{
16+
search: string
17+
}>
18+
>()
1719
})

0 commit comments

Comments
 (0)