Skip to content

Commit 54e0422

Browse files
committed
Export Svelte InertiaFormProps
1 parent f8557cb commit 54e0422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/lib/useForm.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { writable, type Writable } from 'svelte/store'
1717

1818
type FormDataType = Record<string, FormDataConvertible>
1919

20-
interface InertiaFormProps<TForm extends FormDataType> {
20+
export interface InertiaFormProps<TForm extends FormDataType> {
2121
isDirty: boolean
2222
errors: Partial<Record<keyof TForm, string>>
2323
hasErrors: boolean

0 commit comments

Comments
 (0)