import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; @Injectable({ providedIn: 'root', }) export class FileService { constructor(private http: HttpClient) {} public downloadFile(url: string): Observable { return this.http.get(url, { responseType: 'blob' }); } }