spartaxx.businessmodels 1.0.64 → 1.0.67
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/ExcelExport.ts +5 -5
- package/Common/FileGenConfig.ts +6 -0
- package/Common/PdfExport.ts +3 -2
- package/package.json +1 -1
- package/Common/ExportExcelConfig.ts +0 -6
- package/Common/ExportPdfConfig.js +0 -2
- package/Common/ExportPdfConfig.ts +0 -6
- /package/Common/{ExportExcelConfig.js → FileGenConfig.js} +0 -0
package/Common/ExcelExport.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import {FileGenConfig} from "./FileGenConfig";
|
2
2
|
|
3
3
|
export interface ExcelExport {
|
4
|
-
data
|
5
|
-
columnsList
|
6
|
-
fileExportConfig
|
7
|
-
isFileTypeBase64
|
4
|
+
data?: any[];
|
5
|
+
columnsList?: any[];
|
6
|
+
fileExportConfig?: FileGenConfig;
|
7
|
+
isFileTypeBase64?: boolean;
|
8
8
|
sheetName?: string;
|
9
9
|
}
|
package/Common/PdfExport.ts
CHANGED
package/package.json
CHANGED
File without changes
|