Skip to content

Commit a5596f8

Browse files
ci: apply automated fixes and generate docs
1 parent fdf486f commit a5596f8

File tree

3 files changed

+41
-37
lines changed

3 files changed

+41
-37
lines changed

packages/react-form/src/useForm.tsx

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ export interface ReactFormApi<
9191
}
9292

9393
/**
94-
* {@link ReactFormApi} with all generics set to `any` for convenience use in generic contexts.
95-
*/
94+
* {@link ReactFormApi} with all generics set to `any` for convenience use in generic contexts.
95+
*/
9696
export type AnyReactFormApi = ReactFormApi<
9797
any,
9898
any,
@@ -153,23 +153,23 @@ export type ReactFormExtendedApi<
153153
TSubmitMeta
154154
>
155155

156-
/**
157-
* {@link ReactFormExtendedApi} with all generics set to `any` for convenience use in generic contexts.
158-
*/
159-
export type AnyReactFormExtendedApi = ReactFormExtendedApi<
160-
any,
161-
any,
162-
any,
163-
any,
164-
any,
165-
any,
166-
any,
167-
any,
168-
any,
169-
any,
170-
any,
171-
any
172-
>
156+
/**
157+
* {@link ReactFormExtendedApi} with all generics set to `any` for convenience use in generic contexts.
158+
*/
159+
export type AnyReactFormExtendedApi = ReactFormExtendedApi<
160+
any,
161+
any,
162+
any,
163+
any,
164+
any,
165+
any,
166+
any,
167+
any,
168+
any,
169+
any,
170+
any,
171+
any
172+
>
173173

174174
function LocalSubscribe({
175175
form,

packages/solid-form/src/createForm.tsx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -189,23 +189,23 @@ export type SolidFormExtendedApi<
189189
TSubmitMeta
190190
>
191191

192-
/**
193-
* {@link SolidFormExtendedApi} with all generics set to `any` for convenience use in generic contexts.
194-
*/
195-
export type AnySolidFormExtendedApi = SolidFormExtendedApi<
196-
any,
197-
any,
198-
any,
199-
any,
200-
any,
201-
any,
202-
any,
203-
any,
204-
any,
205-
any,
206-
any,
207-
any
208-
>
192+
/**
193+
* {@link SolidFormExtendedApi} with all generics set to `any` for convenience use in generic contexts.
194+
*/
195+
export type AnySolidFormExtendedApi = SolidFormExtendedApi<
196+
any,
197+
any,
198+
any,
199+
any,
200+
any,
201+
any,
202+
any,
203+
any,
204+
any,
205+
any,
206+
any,
207+
any
208+
>
209209

210210
export function createForm<
211211
TParentData,

packages/svelte-form/src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ export * from '@tanstack/form-core'
22

33
export { useStore } from '@tanstack/svelte-store'
44

5-
export { createForm, type SvelteFormApi, type AnySvelteFormApi } from './createForm.svelte.js'
5+
export {
6+
createForm,
7+
type SvelteFormApi,
8+
type AnySvelteFormApi,
9+
} from './createForm.svelte.js'
610

711
export { default as Field, createField } from './Field.svelte'
812

0 commit comments

Comments
 (0)