es-grid-template
Version:
es-grid-template
5 lines (4 loc) • 305 B
TypeScript
import type XLSX_NS from 'xlsx';
import type { ArtColumn } from '../interfaces';
/** Export table data to an Excel file based on BaseTable's dataSource and columns */
export default function exportTableAsExcel(xlsxPackage: typeof XLSX_NS, dataSource: any[], columns: ArtColumn[], filename: string): void;