@realsee/dnalogel 3.50.11 → 3.50.12
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.
- package/CHANGELOG.md +3 -0
- package/dist/Sculpt/index.d.ts +5 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.js +11 -3
- package/dist/index.umd.js +3 -3
- package/libs/Sculpt/index.d.ts +5 -1
- package/libs/Sculpt/index.js +60 -52
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/CHANGELOG.md
CHANGED
package/dist/Sculpt/index.d.ts
CHANGED
|
@@ -140,7 +140,11 @@ export declare class Sculpt extends Subscribe<Event> {
|
|
|
140
140
|
/**
|
|
141
141
|
* @description: 开始绘制线段
|
|
142
142
|
*/
|
|
143
|
-
|
|
143
|
+
createLine(params?: Parameters<Line['create']>[0]): Promise<Line>;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated use createLine instead
|
|
146
|
+
*/
|
|
147
|
+
createline(...params: any[]): Promise<void>;
|
|
144
148
|
/**
|
|
145
149
|
* @description: 开始绘制空间折线
|
|
146
150
|
*/
|