spartaxx.businessmodels 1.0.63 → 1.0.65

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