UNPKG

react-export-table-to-excel

Version:

It allows you to export an HTML table just by sending the table reference and the name with which you want the file to be saved

9 lines (8 loc) 162 B
export interface UseExcel { filename: string; sheet?: string; currentTableRef: any; } export interface ExcelReturn { onDownload: () => boolean; }