diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
20 lines (16 loc) • 431 B
TypeScript
/**
* A handler that implements reversible moving of shapes.
*
*/
export default class MoveElementsHandler {
static $inject: string[];
/**
* @param modeling
*/
constructor(modeling: Modeling);
preExecute(context: any): void;
postExecute(context: any): void;
}
type Modeling = import("../Modeling.js").default;
import MoveHelper from './helper/MoveHelper.js';
//# sourceMappingURL=MoveElementsHandler.d.ts.map