rapid-spreadjs 1.0.111 → 1.0.113
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 +141 -13
- 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 +141 -13
- 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/sheet.d.ts +6 -0
- package/package.json +1 -1
package/dist/utils/sheet.d.ts
CHANGED
|
@@ -181,4 +181,10 @@ export declare const SheetUtils: {
|
|
|
181
181
|
rowCount: number;
|
|
182
182
|
colCount: number;
|
|
183
183
|
}) => string;
|
|
184
|
+
/**
|
|
185
|
+
* 粘贴单元格的值
|
|
186
|
+
* @param sheet 工作表对象
|
|
187
|
+
* @param callFn 粘贴成功或失败的回调函数(该回调函数包含2个参数,第一个参数为是否粘贴成功,第二个参数为提示信息)
|
|
188
|
+
*/
|
|
189
|
+
pasteCellValues: (sheet: any, callFn?: (isSuccess: boolean, tipMsg: string) => void) => Promise<void>;
|
|
184
190
|
};
|