I am getting an error on IProject
must return a value
.
I want to return the result from the api.
public getProjectDetails(projectId: number): IProject {
this.testStationService.getProjectById(projectId)
.subscribe(
(res) => {
return res;
});
}