UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

23 lines (19 loc) 521 B
/** * A handler that implements reversible moving of shapes. * */ export default class MoveShapeHandler { static $inject: string[]; /** * @param modeling */ constructor(modeling: Modeling); execute(context: any): any; postExecute(context: any): void; revert(context: any): any; moveChildren(context: any): void; getNewParent(context: any): any; } type Modeling = import("../Modeling.js").default; import MoveHelper from './helper/MoveHelper.js'; //# sourceMappingURL=MoveShapeHandler.d.ts.map