This commit is contained in:
ziajka 2018-11-06 14:59:31 +01:00
parent cf62f3634b
commit 6435a84da2
2 changed files with 1 additions and 3 deletions

View File

@ -4,9 +4,7 @@ import { Link } from "../../models/link";
import { NodesWidget } from "./nodes";
import { Widget } from "./widget";
import { SVGSelection } from "../models/types";
import { LinksWidget } from "./links";
import { Drawing } from "../models/drawing";
import { DrawingsWidget } from "./drawings";
import { DrawingLineWidget } from "./drawing-line";
import { SelectionTool } from "../tools/selection-tool";
import { MovingTool } from "../tools/moving-tool";

View File

@ -11,7 +11,7 @@ import { LinkWidget } from "./link";
export class LinksWidget implements Widget {
constructor(
private multiLinkCalculatorHelper: MultiLinkCalculatorHelper,
private linkWidget: LinkWidget
private linkWidget: LinkWidget,
) {
}