rapid-spreadjs 1.0.31 → 1.0.32
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/index.cjs.js +10628 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +10628 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/utils/formula-other.d.ts +14 -0
- package/dist/utils/formula.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 其他自定义公式
|
|
3
|
+
* 此文件用于放置其他自定义公式,如:YJHTQD(此公式代码较多)
|
|
4
|
+
*/
|
|
5
|
+
export declare const FormulaUtilsOther: {
|
|
6
|
+
/**
|
|
7
|
+
* 回弹强度换算查表
|
|
8
|
+
* @param forComm commFormula.ts中的CommFormula.commFun对象
|
|
9
|
+
* @param jzfs 浇筑方式
|
|
10
|
+
* @param xzhhtz 修正后回弹值
|
|
11
|
+
* @param thsd 碳化深度
|
|
12
|
+
*/
|
|
13
|
+
YJHTQD: (forComm: any, jzfs: any, xzhhtz: any, thsd: any) => any;
|
|
14
|
+
};
|