gojs
Version:
Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams
18 lines (17 loc) • 511 B
TypeScript
import * as go from "../../../release/go";
import WallReshapingTool = require("./WallReshapingTool");
declare class WallBuildingTool extends go.Tool {
private _startPoint;
private _endPoint;
private _wallReshapingTool;
constructor();
startPoint: go.Point;
endPoint: go.Point;
wallReshapingTool: WallReshapingTool;
doActivate(): void;
doMouseDown(): void;
doKeyDown(): void;
doMouseMove(): void;
doDeactivate(): void;
}
export = WallBuildingTool;