2023-07-13 13:30:47 +00:00
|
|
|
export const downloadFileToDevice = (filename: string, file: Buffer): void => {
|
2023-11-05 23:33:40 +00:00
|
|
|
const link = document.createElement("a")
|
2023-07-13 13:30:47 +00:00
|
|
|
|
2023-11-05 23:33:40 +00:00
|
|
|
link.href = window.URL.createObjectURL(
|
|
|
|
new Blob([file], { type: "application/pdf" })
|
|
|
|
)
|
|
|
|
link.download = filename
|
|
|
|
link.click()
|
|
|
|
}
|