UNPKG

bpmn-js

Version:

A bpmn 2.0 toolkit and web modeler

17 lines (10 loc) 342 B
import inherits from 'inherits-browser'; import RuleProvider from 'diagram-js/lib/features/rules/RuleProvider'; export default function CustomRules(eventBus) { RuleProvider.call(this, eventBus); } CustomRules.$inject = [ 'eventBus' ]; inherits(CustomRules, RuleProvider); CustomRules.prototype.init = function() { // placeholder };