index.ts 274 Bytes
import { ExecutionActionListRefItemType } from './type';
import { buildUUID } from '/@/utils/uuid';

export { default as ExecutionAction } from './index.vue';

export function createNewExecutionActionItem(): ExecutionActionListRefItemType {
  return { key: buildUUID() };
}