@arteneo/forge
Version:
11 lines (10 loc) • 520 B
TypeScript
import React from "react";
import { AxiosResponse } from "axios";
import { FormProps } from "../../components/Form/components/Form";
import { BatchResultInterface } from "../../contexts/DialogBatch";
interface BindDialogBatchFormProps extends FormProps {
processResponse?: (response: AxiosResponse) => BatchResultInterface[];
}
declare const BindDialogBatchForm: ({ processResponse, ...props }: BindDialogBatchFormProps) => React.JSX.Element;
export default BindDialogBatchForm;
export { BindDialogBatchFormProps };