spartaxx.businessmodels 1.0.40 → 1.0.41
Sign up to get free protection for your applications and to get access to all the features.
package/Common/ExcelExport.ts
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
import { ExportExcelConfig } from "./ExportExcelConfig";
|
2
|
+
|
1
3
|
export interface ExcelExport {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
data: any[];
|
5
|
+
columnsList: any[];
|
6
|
+
filePath: ExportExcelConfig;
|
7
|
+
sheetName?: string;
|
8
|
+
}
|