UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

21 lines (19 loc) 649 B
/** * A handler that makes sure labels are properly moved with * their label targets. * */ export default class LabelSupport extends CommandInterceptor { /** * @param injector * @param eventBus * @param modeling */ constructor(injector: Injector, eventBus: EventBus, modeling: Modeling); } type Element = import("../../model/Types.js").Element; type Injector = import("didi").Injector; type EventBus = import("../../core/EventBus.js").default; type Modeling = import("../modeling/Modeling.js").default; import CommandInterceptor from '../../command/CommandInterceptor.js'; //# sourceMappingURL=LabelSupport.d.ts.map