blob: 7d0bc56a7b7452974f3703297f6c8a226f9c46f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* Created by rcohen on 11/7/2016.
*/
'use strict';
export class ExportExcel {
fileName:string;
metaData:Array<string>;//array of text rows that display on the top of table
dataObj:any;//array of JSONs - the table data
tableHeaders:Array<string>;
groupByField:string;//[optional] get field name in order to split data to some tables group by this field
}
|