mxdraw 0.1.213 → 0.1.214
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/dist/mxdraw.d.ts +4 -0
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -1770,6 +1770,10 @@ declare class MxFunClass {
|
|
|
1770
1770
|
* 得以语言字符串
|
|
1771
1771
|
* */
|
|
1772
1772
|
getLanguageString: (id: string, sDef?: string) => string;
|
|
1773
|
+
/**
|
|
1774
|
+
* 把一个颜色变量转成一个数组颜色
|
|
1775
|
+
* */
|
|
1776
|
+
getNumberColor: (iColor: number | string | THREE.Color) => number;
|
|
1773
1777
|
}
|
|
1774
1778
|
declare const MxFun: MxFunClass;
|
|
1775
1779
|
|