UNPKG

bpmn-js

Version:

A bpmn 2.0 toolkit and web modeler

19 lines (12 loc) 369 B
'use strict'; var inherits = require('inherits'); var RuleProvider = require('diagram-js/lib/features/rules/RuleProvider'); function CustomRules(eventBus) { RuleProvider.call(this, eventBus); } CustomRules.$inject = [ 'eventBus' ]; inherits(CustomRules, RuleProvider); CustomRules.prototype.init = function() { // placeholder }; module.exports = CustomRules;