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 5529851 commit 24f3ae6Copy full SHA for 24f3ae6
src/lib/client/index.ts
@@ -58,7 +58,9 @@ export {
58
dateProxy,
59
fieldProxy,
60
formFieldProxy,
61
- stringProxy
+ stringProxy,
62
+ arrayProxy,
63
+ type TaintOptions
64
} from './proxies.js';
65
66
export {
src/routes/tests/array-component/AutoComplete.svelte
@@ -7,7 +7,7 @@
7
import type { z } from 'zod';
8
import type { ZodValidation, FormPathArrays } from '$lib';
9
import type { SuperForm } from '$lib/client';
10
- import { arrayProxy, type TaintOptions } from '$lib/client/proxies';
+ import { arrayProxy, type TaintOptions } from '$lib/client';
11
12
export let form: SuperForm<ZodValidation<T>, unknown>;
13
export let field: FormPathArrays<z.infer<T>>;
0 commit comments