ngx-mat-dynamic-table
Version:
Dynamic material table table.
14 lines (13 loc) • 496 B
TypeScript
import { OnInit } from '@angular/core';
import { XlsxExportService } from './service/xlsx-export.service';
import { MatSnackBar } from '@angular/material/snack-bar';
export declare class XlsxTableExportComponent<T> implements OnInit {
private xlsxExportService;
private matSnackBar;
data: T[];
fileName: string;
headers: string[];
constructor(xlsxExportService: XlsxExportService, matSnackBar: MatSnackBar);
ngOnInit(): void;
eportToExcell(): void;
}