11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
|
|
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
||
|
|
|
||
|
|
export const initExplorerEntityNameEdit = (actionId: string) => {
|
||
|
|
return {
|
||
|
|
type: ReduxActionTypes.INIT_EXPLORER_ENTITY_NAME_EDIT,
|
||
|
|
payload: {
|
||
|
|
id: actionId,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
};
|