RubyGems
npm
Organizations
Log in
Sign up
npm
spartaxx.businessmodels
Versions diffs
1.0.44 → 1.0.45
spartaxx.businessmodels 1.0.44 → 1.0.45
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/Common/ExportPdfConfig.js
+2
-0
package/Common/ExportPdfConfig.ts
+6
-0
package/Common/PdfExport.js
+2
-0
package/Common/PdfExport.ts
+8
-0
package/package.json
+1
-1
package/Common/ExportPdfConfig.js
ADDED
Viewed
@@ -0,0 +1,2 @@
1
+
"use strict";
2
+
Object.defineProperty(exports, "__esModule", { value: true });
package/Common/ExportPdfConfig.ts
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
export interface ExportPdfConfig {
2
+
AppBaseURL: string,
3
+
AppDirName: string,
4
+
ExportDirName: string,
5
+
FileName: string
6
+
}
package/Common/PdfExport.js
ADDED
Viewed
@@ -0,0 +1,2 @@
1
+
"use strict";
2
+
Object.defineProperty(exports, "__esModule", { value: true });
package/Common/PdfExport.ts
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import { ExportPdfConfig } from "./ExportPdfConfig";
2
+
3
+
export interface PdfExport {
4
+
data: any[];
5
+
columnsList: any[];
6
+
exportPdfConfig: ExportPdfConfig;
7
+
sheetName?: string;
8
+
}
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "spartaxx.businessmodels",
3
-
"version": "1.0.
44
",
3
+
"version": "1.0.
45
",
4
4
"main": "protest.js",
5
5
"type": "commonjs",
6
6
"scripts": {