Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
KostiantynFandeliuk committed Dec 10, 2024
1 parent ef265ea commit b80e872
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export declare const useForm: ({ fieldsConfig, onSubmit, onChange, setInputChang
formData: Record<string, string | number>;
errors: Record<string, string>;
formRef: import('preact').RefObject<HTMLFormElement>;
handleInputChange: (event: Event, errorsProp: Record<string, string>) => void;
handleInputChange: (event: Event, errorsProp?: Record<string, string>) => void;
onFocus: (event: Event) => void;
handleBlur: (event: Event, errorsProp: Record<string, string>) => void;
handleBlur: (event: Event, errorsProp?: Record<string, string>) => void;
handleSubmit: (event: SubmitEvent) => void;
handleValidationSubmit: (disableShowError?: boolean) => boolean;
};
Expand Down
Loading

0 comments on commit b80e872

Please sign in to comment.