Hi! I tried to make this data API request but I still get this error (pic). I tried to google the solution but I'm beginner and my knowledge about Angular isn't helpful. Can Somebody please help and explain how to fix this? ```ts
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class DataService {
getSummaryData: any;
constructor(private http: HttpClient) {
this.getSummaryData(){
return this.http.post(https://api.covid19api.com/summary);
}
}
}
this is TypeScript, so use Types. Else you are just coding JavaScript (ew)