dxfview 0.0.4-beta.3 → 0.0.4-beta.4
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.
|
@@ -95,6 +95,11 @@ export declare abstract class BaseAnnotation extends Event<AnnotationEvents> {
|
|
|
95
95
|
dblclick: () => void;
|
|
96
96
|
protected onMouseClick(e: EventInfo): void;
|
|
97
97
|
protected selectAnnotationByEvent(e: EventInfo): void;
|
|
98
|
+
/**
|
|
99
|
+
* 撤销当前绘制的最后一个点。
|
|
100
|
+
* @returns 是否成功撤销
|
|
101
|
+
*/
|
|
102
|
+
undoLastPoint(): boolean;
|
|
98
103
|
keydown: (e: EventInfo) => void;
|
|
99
104
|
abstract exitDrawing(): void;
|
|
100
105
|
abstract cancel(): void;
|