TFormSubmitActionProps object¶
TFormSubmitActionProps is an object which represents the detail of the submit event and consists of the following fields:
type TFormSubmitActionProps = {
controlsEntities: FormControl[];
formData: FormData;
responseObject?: IRequestResponse<unknown>;
};
FormControl¶
FormControl represents the FormControl object.
FormData¶
FormData represents the FormData object.
IRequestResponse¶
IRequestResponse represents the IRequestResponse object.