shikeying
2023-04-17 fbc213a1ebf9bf9d41c778c16f50b81c05711fba
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));
 
};