- avoid using any or undefined types in the code - fix ui issues for api home screen - update naming convensions - remove unwanted code - use color variables
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
|
import { curlImportFormValues } from "pages/Editor/APIEditor/helpers";
|
|
|
|
export const submitCurlImportForm = (payload: curlImportFormValues) => {
|
|
return {
|
|
type: ReduxActionTypes.SUBMIT_CURL_FORM_INIT,
|
|
payload,
|
|
};
|
|
};
|