Skip to content

Commit

Permalink
feat(excel): excel exportation now uses sheetjs in background
Browse files Browse the repository at this point in the history
BREAKING CHANGE: advanced exportation and new props for exportmeExcel
  • Loading branch information
leoreisdias committed Sep 4, 2023
1 parent 576d2d8 commit 662ae3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const convertType = (
}
};

export function downloadFile(output: string, fileName: string) {
export function downloadFile(output: string, fileName: string): void {
const link = document.createElement('a');
document.body.appendChild(link);
link.download = fileName;
Expand Down

0 comments on commit 662ae3a

Please sign in to comment.