@newview/report-tools 1.0.18 → 1.0.19
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/package.json +1 -1
- package/readme.md +1 -1
- package/types/ReportTool.d.ts +9 -0
package/package.json
CHANGED
package/readme.md
CHANGED
package/types/ReportTool.d.ts
CHANGED
|
@@ -158,6 +158,15 @@ export declare class reportTool {
|
|
|
158
158
|
copySheetIndexPage: (sheetHandle?: number) => void;
|
|
159
159
|
|
|
160
160
|
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* 复制指定下标页插入最后
|
|
164
|
+
* @param sheetHandle 复制工作表下标
|
|
165
|
+
* @returns
|
|
166
|
+
*/
|
|
167
|
+
copySheetIndexPageEnd: (sheetHandle?: number) => void;
|
|
168
|
+
|
|
169
|
+
|
|
161
170
|
/**
|
|
162
171
|
* 复制初始页
|
|
163
172
|
* @param sheetHandle 复制工作表下标
|