mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
const downloadFile = (url: string) => {
|
|
const a = document.createElement("a");
|
|
a.href = url;
|
|
a.click();
|
|
};
|
|
|
|
export default downloadFile;
|