2022-04-12 10:50:01 +00:00
|
|
|
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
|
2020-04-14 12:34:14 +00:00
|
|
|
import { curlImportFormValues } from "pages/Editor/APIEditor/helpers";
|
|
|
|
|
|
|
|
|
|
export const submitCurlImportForm = (payload: curlImportFormValues) => {
|
|
|
|
|
return {
|
|
|
|
|
type: ReduxActionTypes.SUBMIT_CURL_FORM_INIT,
|
|
|
|
|
payload,
|
|
|
|
|
};
|
|
|
|
|
};
|