bpmn-js/test/util/custom-rules/CustomRules.js

17 lines
334 B
JavaScript
Raw Normal View History

import inherits from 'inherits';
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() {
2019-08-19 08:39:20 +00:00
// placeholder
};