UNPKG
file-saver-angular
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.2
0.0.1
This library is used to export data to csv/excel
file-saver-angular
/
lib
/
file-saver-angular.service.d.ts
8 lines
(7 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
class
FileSaverAngularService
{
constructor
();
exportToCsv
(
rows
:
object
[],
filename
:
string
):
void
;
private
csvExport;
exportToExcel
(
rows
:
object
[],
filename
:
string
):
void
;
private
excelExport; }