UNPKG

camunda-modeler

Version:

Camunda Modeler for BPMN, DMN and CMMN, based on bpmn.io

16 lines (9 loc) 263 B
'use strict'; var inherits = require('inherits'); var BaseEditor = require('app/editor/base-editor'); function TestEditor(options) { BaseEditor.call(options); this.update = function() {}; } inherits(TestEditor, BaseEditor); module.exports = TestEditor;