rapid-spreadjs 1.0.21 → 1.0.23
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 +49 -27
- 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.esm.js +49 -27
- 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/common.d.ts +6 -0
- package/dist/utils/wookbook.d.ts +1 -1
- package/package.json +1 -1
package/dist/utils/common.d.ts
CHANGED
package/dist/utils/wookbook.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const WorkbookUtils: {
|
|
|
9
9
|
* @param succFunc 文件打开成功后的回调函数,返回的第一个参数为spread工作簿对象
|
|
10
10
|
* @param errorFunc 文件打开失败后的回调函数,返回的第一个参数为错误信息
|
|
11
11
|
*/
|
|
12
|
-
loadSjsFile: (spread: any, fileUrl: string, succFunc?: (spreadObj: any) => void
|
|
12
|
+
loadSjsFile: (spread: any, fileUrl: string, succFunc?: (spreadObj: any) => Promise<void>, errorFunc?: (error: any) => Promise<void>) => Promise<void>;
|
|
13
13
|
/**
|
|
14
14
|
* 打印所有工作表
|
|
15
15
|
* @param GC GC对象
|