diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
18 lines (14 loc) • 336 B
TypeScript
/**
* A handler that implements reversible attaching/detaching of shapes.
*
*/
export default class UpdateAttachmentHandler {
static $inject: string[];
/**
* @param modeling
*/
constructor(modeling: Modeling);
execute(context: any): any;
revert(context: any): any;
}
type Modeling = import("../Modeling").default;