export class Download { static download(url: string) { const a = document.createElement("a"); a.style.display = "none"; a.href = "/api/maven2/" + url; document.body.appendChild(a); a.click(); document.body.removeChild(a); } }