UNPKG

bpmn-js

Version:

A bpmn 2.0 toolkit and web modeler

16 lines (14 loc) 430 B
/** * BPMN specific remove behavior. * */ export default class RemoveParticipantBehavior extends CommandInterceptor { /** * @param eventBus * @param modeling */ constructor(eventBus: EventBus, modeling: Modeling); } type EventBus = import("diagram-js/lib/core/EventBus").default; type Modeling = import("../Modeling").default; import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';