shikeying
2023-04-07 c192f834c4e092bc7c0f2722c343c25c1be619ab
1
2
3
4
5
6
7
8
9
10
11
'use strict';
 
var inputOutputParameter = require('./implementation/InputOutputParameter');
 
var assign = require('lodash/assign');
 
module.exports = function(group, element, bpmnFactory, options, translate) {
 
  group.entries = group.entries.concat(inputOutputParameter(element, bpmnFactory, assign({}, options), translate));
 
};