Skip to content

Commit

Permalink
Export Svelte's InertiaFormProps
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroborges committed Sep 23, 2024
1 parent f8557cb commit 74f9379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte/src/lib/useForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { writable, type Writable } from 'svelte/store'

type FormDataType = Record<string, FormDataConvertible>

interface InertiaFormProps<TForm extends FormDataType> {
export interface InertiaFormProps<TForm extends FormDataType> {
isDirty: boolean
errors: Partial<Record<keyof TForm, string>>
hasErrors: boolean
Expand Down

0 comments on commit 74f9379

Please sign in to comment.