10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
export function downloadFile(content: string, filename: string, mime: string) {
|
|
const blob = new Blob([content], { type: `${mime};charset=utf-8;` });
|
|
const url = URL.createObjectURL(blob);
|
|
const link = document.createElement("a");
|
|
link.href = url;
|
|
link.download = filename;
|
|
link.click();
|
|
URL.revokeObjectURL(url);
|
|
}
|