UNPKG

bpmn-js-cli

Version:

A command-line interface for bpmn-js

13 lines (11 loc) 270 B
export default function RemoveCommand(params, modeling) { return { args: [ params.elements('elements') ], exec: function(elements) { return modeling.removeElements(elements); } }; } RemoveCommand.$inject = [ 'cli._params', 'modeling' ];