PromucFlow_constructor/app/client/src/actions/helpActions.ts

15 lines
366 B
TypeScript
Raw Normal View History

import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
2020-05-28 18:10:26 +00:00
export const setHelpDefaultRefinement = (payload: string) => {
return {
type: ReduxActionTypes.SET_DEFAULT_REFINEMENT,
payload,
};
};
export const setHelpModalVisibility = (payload: boolean) => {
return {
type: ReduxActionTypes.SET_HELP_MODAL_OPEN,
payload,
};
};