Skip to content

Commit 662ae3a

Browse files
committed
feat(excel): excel exportation now uses sheetjs in background
BREAKING CHANGE: advanced exportation and new props for exportmeExcel
1 parent 576d2d8 commit 662ae3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const convertType = (
1919
}
2020
};
2121

22-
export function downloadFile(output: string, fileName: string) {
22+
export function downloadFile(output: string, fileName: string): void {
2323
const link = document.createElement('a');
2424
document.body.appendChild(link);
2525
link.download = fileName;

0 commit comments

Comments
 (0)