mirror of
https://github.com/bpmn-io/bpmn-js.git
synced 2025-08-06 18:24:33 +08:00
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
import AutoPlaceModule from '../auto-place';
|
|
import ComplexPreviewModule from 'diagram-js/lib/features/complex-preview';
|
|
import ModelingModule from '../modeling';
|
|
|
|
import AppendPreview from './AppendPreview';
|
|
|
|
export default {
|
|
__depends__: [
|
|
AutoPlaceModule,
|
|
ComplexPreviewModule,
|
|
ModelingModule
|
|
],
|
|
__init__: [ 'appendPreview' ],
|
|
appendPreview: [ 'type', AppendPreview ]
|
|
};
|