TelegramPWA/src/util/download.ts
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

7 lines
175 B
TypeScript

export default function download(url: string, filename: string) {
const link = document.createElement('a');
link.href = url;
link.download = filename;
link.click();
}