UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

16 lines (14 loc) 370 B
/** * Select element after auto placement. * */ export default class AutoPlaceSelectionBehavior { static $inject: string[]; /** * @param eventBus * @param selection */ constructor(eventBus: EventBus, selection: Selection); } type EventBus = import("../../core/EventBus").default; type Selection = import("../selection/Selection").default;