spartaxx.businessmodels 1.0.40 → 1.0.42

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,8 @@
1
+ import { ExportExcelConfig } from "./ExportExcelConfig";
2
+
1
3
  export interface ExcelExport {
2
- data: any[];
3
- columnsList: any[];
4
- filePath: string;
5
- sheetName?: string;
6
- }
4
+ data: any[];
5
+ columnsList: any[];
6
+ exportExcelConfig: ExportExcelConfig;
7
+ sheetName?: string;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface ExportExcelConfig {
2
+ AppBaseURL: string,
3
+ AppDirName: string,
4
+ ExportDirName: string,
5
+ FileName: string
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {