@tak-ps/cloudtak 13.52.0 → 13.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,9 +21,13 @@ export declare enum DrawToolMode {
|
|
|
21
21
|
}
|
|
22
22
|
export default class DrawTool {
|
|
23
23
|
private draw;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
_changeCount
|
|
24
|
+
private _editing;
|
|
25
|
+
private _mode;
|
|
26
|
+
private _changeCount;
|
|
27
|
+
get editing(): COT | null;
|
|
28
|
+
set editing(cot: COT | null);
|
|
29
|
+
get mode(): DrawToolMode;
|
|
30
|
+
set mode(mode: DrawToolMode);
|
|
27
31
|
route: {
|
|
28
32
|
graph: Routing;
|
|
29
33
|
finder: TerraRoute & {
|
|
@@ -44,7 +48,9 @@ export default class DrawTool {
|
|
|
44
48
|
loading: boolean;
|
|
45
49
|
overlay: string;
|
|
46
50
|
};
|
|
47
|
-
|
|
51
|
+
private _snappingOptions;
|
|
52
|
+
get snappingOptions(): string[];
|
|
53
|
+
set snappingOptions(options: string[]);
|
|
48
54
|
get snappingLayer(): string;
|
|
49
55
|
set snappingLayer(layer: string);
|
|
50
56
|
get canFinish(): boolean;
|