diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
20 lines (18 loc) • 594 B
TypeScript
/**
* 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").Element;
type Injector = import("didi").Injector;
type EventBus = import("../../core/EventBus").default;
type Modeling = import("../modeling/Modeling").default;
import CommandInterceptor from '../../command/CommandInterceptor';