bpmn-js
Version:
A bpmn 2.0 toolkit and web modeler
19 lines (18 loc) • 735 B
JavaScript
module.exports = {
__init__: [
'appendBehavior',
'createParticipantBehavior',
'createBoundaryEventBehavior',
'createOnFlowBehavior',
'replaceConnectionBehavior',
'removeBehavior',
'modelingFeedback'
],
appendBehavior: [ 'type', require('./AppendBehavior') ],
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
removeBehavior: [ 'type', require('./RemoveBehavior') ],
modelingFeedback: [ 'type', require('./ModelingFeedback') ]
};